You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/06/02 13:44:20 UTC

[commons-imaging] branch master updated (8310bf62 -> aa2d41ae)

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

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


    from 8310bf62 Use String#isEmpty()
     new c60dcce1 Format tweak
     new f7c302e1 Better comment
     new aa2d41ae Trying to fix GHA build

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/maven.yml                                       | 8 ++++----
 .../org/apache/commons/imaging/formats/png/ScanExpediter.java     | 1 +
 .../org/apache/commons/imaging/formats/png/PngWriterTest.java     | 2 +-
 3 files changed, 6 insertions(+), 5 deletions(-)


[commons-imaging] 03/03: Trying to fix GHA build

Posted by gg...@apache.org.
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 aa2d41ae971d06560002757d36ae085c66edbc88
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jun 2 09:44:16 2023 -0400

    Trying to fix GHA build
---
 .github/workflows/maven.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 18a4ea57..806a0641 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -36,10 +36,10 @@ jobs:
         
     steps:
     # https://github.com/actions/checkout/issues/226#issuecomment-854736025
-    - name: Prepare git
-      run: |-
-        git config --global core.autocrlf false
-        git config --global core.eol lf
+#    - name: Prepare git
+#      run: |-
+#        git config --global core.autocrlf false
+#        git config --global core.eol lf
     - uses: actions/checkout@v3.5.2
       with:
         persist-credentials: false


[commons-imaging] 02/03: Better comment

Posted by gg...@apache.org.
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 f7c302e1bca60e8685efd05463c97f52bde8c58b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jun 2 09:39:21 2023 -0400

    Better comment
---
 src/test/java/org/apache/commons/imaging/formats/png/PngWriterTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/imaging/formats/png/PngWriterTest.java b/src/test/java/org/apache/commons/imaging/formats/png/PngWriterTest.java
index 22d8d35a..35944940 100644
--- a/src/test/java/org/apache/commons/imaging/formats/png/PngWriterTest.java
+++ b/src/test/java/org/apache/commons/imaging/formats/png/PngWriterTest.java
@@ -88,7 +88,7 @@ public class PngWriterTest extends PngBaseTest {
         final PaletteFactory factory = new PaletteFactory() {
             @Override
             public Palette makeQuantizedRgbPalette(final BufferedImage src, final int max) {
-                // Force a stupid palette containing nothing but black (all zero's).
+                // Force a palette containing nothing but black (all zero's).
                 return new SimplePalette(new int[max]);
             }
         };


[commons-imaging] 01/03: Format tweak

Posted by gg...@apache.org.
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 c60dcce103e4306848972d291ff89eff10b6aba3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jun 2 09:38:02 2023 -0400

    Format tweak
---
 src/main/java/org/apache/commons/imaging/formats/png/ScanExpediter.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/java/org/apache/commons/imaging/formats/png/ScanExpediter.java b/src/main/java/org/apache/commons/imaging/formats/png/ScanExpediter.java
index 26892c7a..afb14c0c 100644
--- a/src/main/java/org/apache/commons/imaging/formats/png/ScanExpediter.java
+++ b/src/main/java/org/apache/commons/imaging/formats/png/ScanExpediter.java
@@ -34,6 +34,7 @@ import org.apache.commons.imaging.formats.png.scanlinefilters.ScanlineFilterUp;
 import org.apache.commons.imaging.formats.png.transparencyfilters.TransparencyFilter;
 
 abstract class ScanExpediter {
+
     final int width;
     final int height;
     final InputStream is;