--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapType.java 2020-01-16 18:01:13.413129716 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapType.java 2020-01-16 18:01:12.920117606 +0000 @@ -31,7 +31,6 @@ * This class represents the type of a local variable or item on stack * used in the StackMap entries. * - * @version $Id$ * @see StackMapEntry * @see StackMap * @see Const @@ -103,7 +102,7 @@ * @param file Output file stream * @throws IOException */ - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { file.writeByte(type); if (hasIndex()) { file.writeShort(getIndex()); @@ -113,7 +112,7 @@ /** @return true, if type is either ITEM_Object or ITEM_NewObject */ - public final boolean hasIndex() { + public boolean hasIndex() { return type == Const.ITEM_Object || type == Const.ITEM_NewObject; } @@ -136,7 +135,7 @@ * @return String representation */ @Override - public final String toString() { + public String toString() { return "(type=" + Const.getItemName(type) + printIndex() + ")"; } @@ -157,7 +156,7 @@ /** * @return Constant pool used by this object. */ - public final ConstantPool getConstantPool() { + public ConstantPool getConstantPool() { return constant_pool; } @@ -165,7 +164,7 @@ /** * @param constant_pool Constant pool to be used for this object. */ - public final void setConstantPool( final ConstantPool constant_pool ) { + public void setConstantPool( final ConstantPool constant_pool ) { this.constant_pool = constant_pool; } }