--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Synthetic.java 2020-01-16 18:01:14.359152954 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Synthetic.java 2020-01-16 18:01:13.868140893 +0000 @@ -36,7 +36,6 @@ * is intended to be instantiated from the * Attribute.readAttribute() method. * - * @version $Id$ * @see Attribute */ public final class Synthetic extends Attribute { @@ -82,7 +81,7 @@ if (length > 0) { bytes = new byte[length]; input.readFully(bytes); - System.err.println("Synthetic attribute with length > 0"); + println("Synthetic attribute with length > 0"); } } @@ -107,7 +106,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()); @@ -118,7 +117,7 @@ /** * @return data bytes. */ - public final byte[] getBytes() { + public byte[] getBytes() { return bytes; } @@ -126,7 +125,7 @@ /** * @param bytes */ - public final void setBytes( final byte[] bytes ) { + public void setBytes( final byte[] bytes ) { this.bytes = bytes; } @@ -135,7 +134,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { final StringBuilder buf = new StringBuilder("Synthetic"); if (super.getLength() > 0) { buf.append(" ").append(Utility.toHexString(bytes));