--- old/src/java.desktop/share/classes/com/sun/media/sound/Toolkit.java 2016-08-12 17:03:03.000000000 +0300 +++ new/src/java.desktop/share/classes/com/sun/media/sound/Toolkit.java 2016-08-12 17:03:03.000000000 +0300 @@ -52,7 +52,6 @@ } } - /** * Swaps bytes. * @throws ArrayOutOfBoundsException if len is not a multiple of 2. @@ -68,7 +67,6 @@ } } - /** * Linear to DB scale conversion. */ @@ -78,7 +76,6 @@ return dB; } - /** * DB to linear scale conversion. */ @@ -108,7 +105,6 @@ return bytes - (bytes % blockSize); } - /* * gets the number of bytes needed to play the specified number of milliseconds */ @@ -188,7 +184,6 @@ } } - static boolean isFullySpecifiedPCMFormat(AudioFormat format) { if (!format.getEncoding().equals(AudioFormat.Encoding.PCM_SIGNED) && !format.getEncoding().equals(AudioFormat.Encoding.PCM_UNSIGNED)) { @@ -204,7 +199,6 @@ return true; } - public static AudioInputStream getPCMConvertedAudioInputStream(AudioInputStream ais) { // we can't open the device for non-PCM playback, so we have // convert any other encodings to PCM here (at least we try!) @@ -231,5 +225,4 @@ return ais; } - }