Skip to content

Commit

Permalink
Normalize end of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 20, 2024
1 parent 03bad48 commit f15e858
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/apache/bcel/classfile/StackMapEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ public int getFrameType() {

/**
* Calculate stack map entry size
*
*/
int getMapEntrySize() {
if (frameType >= Const.SAME_FRAME && frameType <= Const.SAME_FRAME_MAX) {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/bcel/generic/FieldOrMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/bcel/util/InstructionFinder.java
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down
9 changes: 0 additions & 9 deletions src/main/java/org/apache/bcel/verifier/structurals/Frame.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,41 +48,35 @@ 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);
stack = new OperandStack(maxStack);
}

/**
*
*/
public Frame(final LocalVariables locals, final OperandStack stack) {
this.locals = locals;
this.stack = stack;
}

/**
*
*/
@Override
protected Object clone() {
return new Frame(locals.getClone(), stack.getClone());
}

/**
*
*/
@Override
public boolean equals(final Object o) {
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit f15e858

Please sign in to comment.