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 ac9568b32644e22df5366b2dc1c73e37efbe9e25 Author: Gary David Gregory (Code signing key) <[email protected]> AuthorDate: Tue Jul 9 08:39:42 2024 -0400 Remove redundant keywords --- src/main/java/org/apache/bcel/verifier/structurals/LocalVariables.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/LocalVariables.java b/src/main/java/org/apache/bcel/verifier/structurals/LocalVariables.java index 1b27bb67..05c8e151 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/LocalVariables.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/LocalVariables.java @@ -87,7 +87,7 @@ public class LocalVariables implements Cloneable { * @return a (correctly typed) clone of this object. */ public LocalVariables getClone() { - return (LocalVariables) this.clone(); + return (LocalVariables) clone(); } /**
