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 2012/02/05 20:24:56 UTC

svn commit: r1240779 - /commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java

Author: damjan
Date: Sun Feb  5 19:24:56 2012
New Revision: 1240779

URL: http://svn.apache.org/viewvc?rev=1240779&view=rev
Log:
Make some internal PNG arrays private.


Modified:
    commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java

Modified: commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java
URL: http://svn.apache.org/viewvc/commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java?rev=1240779&r1=1240778&r2=1240779&view=diff
==============================================================================
--- commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java (original)
+++ commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java Sun Feb  5 19:24:56 2012
@@ -54,22 +54,22 @@ public class ScanExpediterInterlaced ext
 
     }
 
-    public static final int Starting_Row[] = {
+    private static final int Starting_Row[] = {
             0, 0, 4, 0, 2, 0, 1
     };
-    public static final int Starting_Col[] = {
+    private static final int Starting_Col[] = {
             0, 4, 0, 2, 0, 1, 0
     };
-    public static final int Row_Increment[] = {
+    private static final int Row_Increment[] = {
             8, 8, 8, 4, 4, 2, 2
     };
-    public static final int Col_Increment[] = {
+    private static final int Col_Increment[] = {
             8, 8, 4, 4, 2, 2, 1
     };
-    public static final int Block_Height[] = {
+    private static final int Block_Height[] = {
             8, 8, 4, 4, 2, 2, 1
     };
-    public static final int Block_Width[] = {
+    private static final int Block_Width[] = {
             8, 4, 4, 2, 2, 1, 1
     };