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-bcel.git
commit 328fd49c297b2865fc66e2d6647c92ee002aaa54 Author: Gary David Gregory (Code signing key) <[email protected]> AuthorDate: Tue Jul 9 08:40:32 2024 -0400 Remove redundant keywords --- src/main/java/org/apache/bcel/verifier/structurals/Subroutines.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/Subroutines.java b/src/main/java/org/apache/bcel/verifier/structurals/Subroutines.java index 565c9536..d79a9a06 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/Subroutines.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/Subroutines.java @@ -219,7 +219,7 @@ public class Subroutines { for (final int lv : lvs) { s.add(Integer.valueOf(lv)); } - getRecursivelyAccessedLocalsIndicesHelper(s, this.subSubs()); + getRecursivelyAccessedLocalsIndicesHelper(s, subSubs()); final int[] ret = new int[s.size()]; int j = -1; for (final Integer index : s) {
