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
The following commit(s) were added to refs/heads/master by this push: new 258d171b Remove useless comments 258d171b is described below commit 258d171be5d21e4d2fcf4726c51701b77065e531 Author: Gary David Gregory (Code signing key) <ggreg...@apache.org> AuthorDate: Sat Jun 17 08:11:10 2023 -0400 Remove useless comments --- .../java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java | 5 ----- 1 file changed, 5 deletions(-) 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 6e9ab743..f630683b 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java @@ -259,9 +259,6 @@ public class ControlFlowGraph { return org.getClone(); } - /* - * Fulfils the contract of InstructionContext.getInstruction(). - */ @Override public InstructionHandle getInstruction() { return instruction; @@ -287,13 +284,11 @@ public class ControlFlowGraph { return org.getClone(); } - /* Satisfies InstructionContext.getSuccessors(). */ @Override public InstructionContext[] getSuccessors() { return contextsOf(_getSuccessors()); } - /* Satisfies InstructionContext.getTag(). */ @Override public int getTag() { return TAG;