--- old/src/share/classes/com/sun/media/sound/RIFFReader.java 2014-07-21 16:46:07.000000000 +0400 +++ new/src/share/classes/com/sun/media/sound/RIFFReader.java 2014-07-21 16:46:07.000000000 +0400 @@ -147,11 +147,11 @@ } } - public final void readFully(byte b[]) throws IOException { + public void readFully(byte b[]) throws IOException { readFully(b, 0, b.length); } - public final void readFully(byte b[], int off, int len) throws IOException { + public void readFully(byte b[], int off, int len) throws IOException { if (len < 0) throw new IndexOutOfBoundsException(); while (len > 0) { @@ -165,7 +165,7 @@ } } - public final long skipBytes(long n) throws IOException { + public long skipBytes(long n) throws IOException { if (n < 0) return 0; long skipped = 0;