--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantString.java 2020-01-16 18:00:42.958381641 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantString.java 2020-01-16 18:00:42.466369556 +0000 @@ -31,7 +31,6 @@ * This class is derived from the abstract {@link Constant} * and represents a reference to a String object. * - * @version $Id$ * @see Constant */ public final class ConstantString extends Constant implements ConstantObject { @@ -87,7 +86,7 @@ * @throws IOException */ @Override - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { file.writeByte(super.getTag()); file.writeShort(string_index); } @@ -96,7 +95,7 @@ /** * @return Index in constant pool of the string (ConstantUtf8). */ - public final int getStringIndex() { + public int getStringIndex() { return string_index; } @@ -104,7 +103,7 @@ /** * @param string_index the index into the constant of the string value */ - public final void setStringIndex( final int string_index ) { + public void setStringIndex( final int string_index ) { this.string_index = string_index; } @@ -113,7 +112,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { return super.toString() + "(string_index = " + string_index + ")"; }