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 3a315629293cb5373498bda6e429a817e1414186 Author: Gary David Gregory (Code signing key) <[email protected]> AuthorDate: Tue Jul 9 08:39:00 2024 -0400 Remove redundant keywords --- .../java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java b/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java index e2be0bf5..c67c7875 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java @@ -238,7 +238,7 @@ public class ControlFlowGraph { * the surrounding ControlFlowGraph. */ private String getExecutionChain() { - final StringBuilder s = new StringBuilder(this.toString()); + final StringBuilder s = new StringBuilder(toString()); for (int i = executionPredecessors.size() - 1; i >= 0; i--) { s.insert(0, executionPredecessors.get(i) + "\n"); }
