Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 59602 invoked from network); 24 Mar 2010 22:59:58 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 Mar 2010 22:59:58 -0000 Received: (qmail 82970 invoked by uid 500); 24 Mar 2010 22:59:58 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 82948 invoked by uid 500); 24 Mar 2010 22:59:58 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 82941 invoked by uid 99); 24 Mar 2010 22:59:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Mar 2010 22:59:58 +0000 X-ASF-Spam-Status: No, hits=-1443.4 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Mar 2010 22:59:57 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5755423889FA; Wed, 24 Mar 2010 22:59:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r927216 - /harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java Date: Wed, 24 Mar 2010 22:59:37 -0000 To: commits@harmony.apache.org From: hindessm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100324225937.5755423889FA@eris.apache.org> Author: hindessm Date: Wed Mar 24 22:59:36 2010 New Revision: 927216 URL: http://svn.apache.org/viewvc?rev=927216&view=rev Log: Add mimetype that is specified by the RI png plugin. Modified: harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java Modified: harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java URL: http://svn.apache.org/viewvc/harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java?rev=927216&r1=927215&r2=927216&view=diff ============================================================================== --- harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java (original) +++ harmony/enhanced/trunk/classlib/modules/imageio/src/main/java/org/apache/harmony/x/imageio/plugins/ImageType.java Wed Mar 24 22:59:36 2010 @@ -28,7 +28,7 @@ public enum ImageType { new String[] { "image/gif" }), @SuppressWarnings("nls") PNG(new String[] { "png", "PNG" }, new String[] { "png" }, - new String[] { "image/png" }); + new String[] { "image/png", "image/x-png" }); private final String names[]; private final String suffixes[];