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 8b1cf279e0c4856211c911b534eeefc6c8c77d94 Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 4 08:12:36 2023 -0400 Update URLs in comments - Document broken URLs - Use HTTPS instead of HTTP in comments where available - Format tweaks --- .../org/apache/commons/imaging/formats/icns/Rle24Compression.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/icns/Rle24Compression.java b/src/main/java/org/apache/commons/imaging/formats/icns/Rle24Compression.java index d1991701..5d17344e 100644 --- a/src/main/java/org/apache/commons/imaging/formats/icns/Rle24Compression.java +++ b/src/main/java/org/apache/commons/imaging/formats/icns/Rle24Compression.java @@ -24,8 +24,8 @@ final class Rle24Compression { final byte[] result = Allocator.byteArray(4 * pixelCount); // Several ICNS parsers advance by 4 bytes here: - // http://code.google.com/p/icns2png/ - when the width is >= 128 - // http://icns.sourceforge.net/ - when those 4 bytes are all zero + // https://code.google.com/archive/p/icns2png/ - when the width is >= 128 + // https://icns.sourceforge.io/ - when those 4 bytes are all zero // // A scan of all .icns files on MacOS shows that // all 128x128 images indeed start with 4 zeroes,
