--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Unknown.java 2020-01-16 18:01:15.327176732 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Unknown.java 2020-01-16 18:01:14.815164155 +0000 @@ -38,7 +38,6 @@ * {@link Attribute#addAttributeReader(String, UnknownAttributeReader)}. * - * @version $Id$ * @see Attribute * @see UnknownAttributeReader */ @@ -124,7 +123,7 @@ * @throws IOException */ @Override - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { super.dump(file); if (super.getLength() > 0) { file.write(bytes, 0, super.getLength()); @@ -135,7 +134,7 @@ /** * @return data bytes. */ - public final byte[] getBytes() { + public byte[] getBytes() { return bytes; } @@ -144,7 +143,7 @@ * @return name of attribute. */ @Override - public final String getName() { + public String getName() { return name; } @@ -152,7 +151,7 @@ /** * @param bytes the bytes to set */ - public final void setBytes( final byte[] bytes ) { + public void setBytes( final byte[] bytes ) { this.bytes = bytes; } @@ -161,7 +160,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { if (super.getLength() == 0 || bytes == null) { return "(Unknown attribute " + name + ")"; }