You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by da...@apache.org on 2013/11/24 06:03:40 UTC

svn commit: r1544912 - /commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java

Author: damjan
Date: Sun Nov 24 05:03:40 2013
New Revision: 1544912

URL: http://svn.apache.org/r1544912
Log:
Fix a Findbugs bug.


Modified:
    commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java

Modified: commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java
URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java?rev=1544912&r1=1544911&r2=1544912&view=diff
==============================================================================
--- commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java (original)
+++ commons/proper/imaging/trunk/src/main/java/org/apache/commons/imaging/formats/png/chunks/PngChunkIccp.java Sun Nov 24 05:03:40 2013
@@ -63,8 +63,7 @@ public class PngChunkIccp extends PngChu
         UncompressedProfile = new ZLibUtils().inflate(CompressedProfile);
 
         if (getDebug()) {
-            System.out.println("UncompressedProfile: "
-                    + ((UncompressedProfile == null) ? "null" : Integer.toString(bytes.length)));
+            System.out.println("UncompressedProfile: " + Integer.toString(bytes.length));
         }
     }