aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/bcel/generic/InstructionHandle.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/apache/bcel/generic/InstructionHandle.java')
-rw-r--r--src/main/java/org/apache/bcel/generic/InstructionHandle.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/apache/bcel/generic/InstructionHandle.java b/src/main/java/org/apache/bcel/generic/InstructionHandle.java
index 216d203a..d3994ce6 100644
--- a/src/main/java/org/apache/bcel/generic/InstructionHandle.java
+++ b/src/main/java/org/apache/bcel/generic/InstructionHandle.java
@@ -40,7 +40,7 @@ import org.apache.bcel.classfile.Utility;
* @version $Id$
* @see Instruction
* @see BranchHandle
- * @see InstructionList
+ * @see InstructionList
*/
public class InstructionHandle {
@@ -233,14 +233,14 @@ public class InstructionHandle {
}
- /** @return a (verbose) string representation of the contained instruction.
+ /** @return a (verbose) string representation of the contained instruction.
*/
public String toString( final boolean verbose ) {
return Utility.format(i_position, 4, false, ' ') + ": " + instruction.toString(verbose);
}
- /** @return a string representation of the contained instruction.
+ /** @return a string representation of the contained instruction.
*/
@Override
public String toString() {