--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantDouble.java 2020-01-16 18:00:27.782007996 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantDouble.java 2020-01-16 18:00:27.287995767 +0000 @@ -30,7 +30,6 @@ * This class is derived from the abstract {@link Constant} * and represents a reference to a Double object. * - * @version $Id$ * @see Constant * @LastModified: Jun 2019 */ @@ -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.writeDouble(bytes); } @@ -96,7 +95,7 @@ /** * @return data, i.e., 8 bytes. */ - public final double getBytes() { + public double getBytes() { return bytes; } @@ -104,7 +103,7 @@ /** * @param bytes the raw bytes that represent the double value */ - public final void setBytes( final double bytes ) { + public void setBytes( final double bytes ) { this.bytes = bytes; } @@ -113,7 +112,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { return super.toString() + "(bytes = " + bytes + ")"; }