--- old/src/java.desktop/share/classes/com/sun/media/sound/SunFileWriter.java 2016-08-12 17:03:02.000000000 +0300 +++ new/src/java.desktop/share/classes/com/sun/media/sound/SunFileWriter.java 2016-08-12 17:03:02.000000000 +0300 @@ -39,17 +39,14 @@ */ abstract class SunFileWriter extends AudioFileWriter { - // buffer size for write protected static final int bufferSize = 16384; // buffer size for temporary input streams protected static final int bisBufferSize = 4096; - final AudioFileFormat.Type types[]; - /** * Constructs a new SunParser object. */ @@ -57,12 +54,9 @@ this.types = types; } - - // METHODS TO IMPLEMENT AudioFileWriter - // new, 10.27.99 - + @Override public final AudioFileFormat.Type[] getAudioFileTypes(){ AudioFileFormat.Type[] localArray = new AudioFileFormat.Type[types.length]; System.arraycopy(types, 0, localArray, 0, types.length); @@ -71,7 +65,6 @@ // HELPER METHODS - /** * rllong * Protected helper method to read 64 bits and changing the order of @@ -213,6 +206,5 @@ public boolean markSupported() { return in.markSupported(); } - } }