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-compress.git
commit 2e95a6d6d97f2e6c9c41fdbf34069239c58a9918 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 4 09:23:52 2024 -0400 PMD UnusedLocalVariable --- src/main/java/org/apache/commons/compress/harmony/unpack200/BcBands.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/BcBands.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/BcBands.java index 2826b3a12..539a17ad5 100644 --- a/src/main/java/org/apache/commons/compress/harmony/unpack200/BcBands.java +++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/BcBands.java @@ -224,7 +224,6 @@ public class BcBands extends BandSet { codeBytes.write(code); } methodByteCodePacked[c][m] = codeBytes.toByteArray(); - bcParsed += methodByteCodePacked[c][m].length; final int[] codes = new int[methodByteCodePacked[c][m].length]; for (int i = 0; i < codes.length; i++) { codes[i] = methodByteCodePacked[c][m][i] & 0xff;