--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantValue.java 2020-01-16 18:00:44.855428240 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantValue.java 2020-01-16 18:00:44.362416129 +0000 @@ -32,7 +32,6 @@ * value, i.e., a default value for initializing a class field. * This class is instantiated by the Attribute.readAttribute() method. * - * @version $Id$ * @see Attribute */ public final class ConstantValue extends Attribute { @@ -96,7 +95,7 @@ * @throws IOException */ @Override - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { super.dump(file); file.writeShort(constantvalue_index); } @@ -105,7 +104,7 @@ /** * @return Index in constant pool of constant value. */ - public final int getConstantValueIndex() { + public int getConstantValueIndex() { return constantvalue_index; } @@ -113,7 +112,7 @@ /** * @param constantvalue_index the index info the constant pool of this constant value */ - public final void setConstantValueIndex( final int constantvalue_index ) { + public void setConstantValueIndex( final int constantvalue_index ) { this.constantvalue_index = constantvalue_index; } @@ -122,7 +121,7 @@ * @return String representation of constant value. */ @Override - public final String toString() { + public String toString() { Constant c = super.getConstantPool().getConstant(constantvalue_index); String buf; int i;