diff --git a/src/main/java/org/apache/bcel/classfile/StackMapEntry.java b/src/main/java/org/apache/bcel/classfile/StackMapEntry.java index 4afe9c0f4f..ca2d7bdee5 100644 --- a/src/main/java/org/apache/bcel/classfile/StackMapEntry.java +++ b/src/main/java/org/apache/bcel/classfile/StackMapEntry.java @@ -224,7 +224,6 @@ public int getFrameType() { /** * Calculate stack map entry size - * */ int getMapEntrySize() { if (frameType >= Const.SAME_FRAME && frameType <= Const.SAME_FRAME_MAX) { diff --git a/src/main/java/org/apache/bcel/generic/FieldOrMethod.java b/src/main/java/org/apache/bcel/generic/FieldOrMethod.java index 1075e06237..80fd33af9f 100644 --- a/src/main/java/org/apache/bcel/generic/FieldOrMethod.java +++ b/src/main/java/org/apache/bcel/generic/FieldOrMethod.java @@ -48,7 +48,6 @@ protected FieldOrMethod(final short opcode, final int index) { * generated by Java 1.5, this answer is sometimes wrong (e.g., if the "clone()" method is called on an * array). A better idea is to use the {@link #getReferenceType(ConstantPoolGen)} method, which correctly * distinguishes between class types and array types. - * */ @Deprecated public String getClassName(final ConstantPoolGen cpg) { diff --git a/src/main/java/org/apache/bcel/util/InstructionFinder.java b/src/main/java/org/apache/bcel/util/InstructionFinder.java index 62169817ee..e501635110 100644 --- a/src/main/java/org/apache/bcel/util/InstructionFinder.java +++ b/src/main/java/org/apache/bcel/util/InstructionFinder.java @@ -65,7 +65,6 @@ public class InstructionFinder { /** * Code patterns found may be checked using an additional user-defined constraint object whether they really match the * needed criterion. I.e., check constraints that can not expressed with regular expressions. - * */ public interface CodeConstraint { diff --git a/src/main/java/org/apache/bcel/verifier/structurals/Frame.java b/src/main/java/org/apache/bcel/verifier/structurals/Frame.java index b847b4d498..25963ab901 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/Frame.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/Frame.java @@ -48,17 +48,14 @@ public static void setThis(final UninitializedObjectType _this) { } /** - * */ private final LocalVariables locals; /** - * */ private final OperandStack stack; /** - * */ public Frame(final int maxLocals, final int maxStack) { locals = new LocalVariables(maxLocals); @@ -66,7 +63,6 @@ public Frame(final int maxLocals, final int maxStack) { } /** - * */ public Frame(final LocalVariables locals, final OperandStack stack) { this.locals = locals; @@ -74,7 +70,6 @@ public Frame(final LocalVariables locals, final OperandStack stack) { } /** - * */ @Override protected Object clone() { @@ -82,7 +77,6 @@ protected Object clone() { } /** - * */ @Override public boolean equals(final Object o) { @@ -94,21 +88,18 @@ public boolean equals(final Object o) { } /** - * */ public Frame getClone() { return (Frame) clone(); } /** - * */ public LocalVariables getLocals() { return locals; } /** - * */ public OperandStack getStack() { return stack; diff --git a/src/main/java/org/apache/bcel/verifier/structurals/UninitializedObjectType.java b/src/main/java/org/apache/bcel/verifier/structurals/UninitializedObjectType.java index c045ac9b23..8a040783a2 100644 --- a/src/main/java/org/apache/bcel/verifier/structurals/UninitializedObjectType.java +++ b/src/main/java/org/apache/bcel/verifier/structurals/UninitializedObjectType.java @@ -43,7 +43,6 @@ public UninitializedObjectType(final ObjectType objectType) { /** * Returns true on equality of this and o. Equality means the ObjectType instances of "initialized" equal one another in * this and the o instance. - * */ @Override public boolean equals(final Object o) {