This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-imaging.git

commit a26341841bc74f5153bf54bccc992de49d265f9b
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jul 4 10:05:01 2023 -0400

    Use Java naming conventions
---
 .../apache/commons/imaging/formats/tiff/TiffCcittTest.java   | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffCcittTest.java 
b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffCcittTest.java
index 61ff6114..16fd6752 100644
--- a/src/test/java/org/apache/commons/imaging/formats/tiff/TiffCcittTest.java
+++ b/src/test/java/org/apache/commons/imaging/formats/tiff/TiffCcittTest.java
@@ -63,17 +63,17 @@ public class TiffCcittTest extends TiffBaseTest {
 
         for (int x = 0; x < a.getWidth(); x++) {
             for (int y = 0; y < a.getHeight(); y++) {
-                final int a_argb = a.getRGB(x, y);
-                final int b_argb = b.getRGB(x, y);
-                if (a_argb != b_argb) {
+                final int aArgb = a.getRGB(x, y);
+                final int bArgb = b.getRGB(x, y);
+                if (aArgb != bArgb) {
                     Debug.debug("width: " + a.getWidth());
                     Debug.debug("height: " + a.getHeight());
                     Debug.debug("x: " + x);
                     Debug.debug("y: " + y);
-                    Debug.debug("a_argb: " + a_argb + " (0x" + 
Integer.toHexString(a_argb) + ")");
-                    Debug.debug("b_argb: " + b_argb + " (0x" + 
Integer.toHexString(b_argb) + ")");
+                    Debug.debug("aArgb: " + aArgb + " (0x" + 
Integer.toHexString(aArgb) + ")");
+                    Debug.debug("bArgb: " + bArgb + " (0x" + 
Integer.toHexString(bArgb) + ")");
                 }
-                assertEquals(a_argb, b_argb);
+                assertEquals(aArgb, bArgb);
             }
         }
     }

Reply via email to