--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantModule.java 2020-01-16 18:00:38.221265281 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantModule.java 2020-01-16 18:00:37.730253220 +0000 @@ -90,7 +90,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(name_index); } @@ -99,7 +99,7 @@ /** * @return Name index in constant pool of module name. */ - public final int getNameIndex() { + public int getNameIndex() { return name_index; } @@ -107,7 +107,7 @@ /** * @param name_index the name index in the constant pool of this Constant Module */ - public final void setNameIndex( final int name_index ) { + public void setNameIndex( final int name_index ) { this.name_index = name_index; } @@ -132,7 +132,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { return super.toString() + "(name_index = " + name_index + ")"; } }