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 498c13b946073d9c6099f669f5e0371939527a3d
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Feb 21 09:05:43 2025 -0500

    Reduce vertical whitespace
---
 src/main/java/org/apache/commons/imaging/palette/ColorCount.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/imaging/palette/ColorCount.java 
b/src/main/java/org/apache/commons/imaging/palette/ColorCount.java
index d37b0115..53a8e239 100644
--- a/src/main/java/org/apache/commons/imaging/palette/ColorCount.java
+++ b/src/main/java/org/apache/commons/imaging/palette/ColorCount.java
@@ -26,7 +26,6 @@ final class ColorCount {
 
     ColorCount(final int argb) {
         this.argb = argb;
-
         alpha = 0xff & argb >> 24;
         red = 0xff & argb >> 16;
         green = 0xff & argb >> 8;
@@ -46,5 +45,4 @@ final class ColorCount {
     public int hashCode() {
         return argb;
     }
-
 }

Reply via email to