--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantClass.java 2020-01-16 18:00:26.834984553 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantClass.java 2020-01-16 18:00:26.341972348 +0000 @@ -87,7 +87,7 @@ * @throws IOException if an I/O error occurs writing to the DataOutputStream. */ @Override - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { file.writeByte(super.getTag()); file.writeShort(name_index); } @@ -96,7 +96,7 @@ /** * @return Name index in constant pool of class name. */ - public final int getNameIndex() { + public int getNameIndex() { return name_index; } @@ -104,7 +104,7 @@ /** * @param name_index the name index in the constant pool of this Constant Class */ - public final void setNameIndex( final int name_index ) { + public void setNameIndex( final int name_index ) { this.name_index = name_index; } @@ -129,7 +129,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { return super.toString() + "(name_index = " + name_index + ")"; } }