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 052cb6fa78a588d5a17bb90e3f611fdc9dbda512 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Apr 26 08:19:48 2025 -0400 Fix PM UnnecessaryFullyQualifiedName --- src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java b/src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java index 763f9605..0980c1e6 100644 --- a/src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java +++ b/src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java @@ -187,7 +187,7 @@ public enum ChunkType { PngChunk make(int length, int chunkType, int crc, byte[] bytes) throws IOException; } - private static final ChunkType[] types = ChunkType.values(); + private static final ChunkType[] types = values(); static ChunkType findType(final int chunkType) { for (final ChunkType type : types) {