Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 36BA2920D for ; Sun, 5 Feb 2012 19:25:21 +0000 (UTC) Received: (qmail 13948 invoked by uid 500); 5 Feb 2012 19:25:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 13836 invoked by uid 500); 5 Feb 2012 19:25:20 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 13829 invoked by uid 99); 5 Feb 2012 19:25:19 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 Feb 2012 19:25:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED 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; Sun, 05 Feb 2012 19:25:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7C62323889F7 for ; Sun, 5 Feb 2012 19:24:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1240779 - /commons/proper/sanselan/trunk/src/main/java/org/apache/commons/sanselan/formats/png/ScanExpediterInterlaced.java Date: Sun, 05 Feb 2012 19:24:56 -0000 To: commits@commons.apache.org From: damjan@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120205192456.7C62323889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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 };