From cc33916b474563d3d4a77cdf305a1a3921d02e1d Mon Sep 17 00:00:00 2001 From: Sergey Bylokhov Date: Fri, 11 Nov 2016 17:07:33 +0300 Subject: [PATCH] 8169332: The fix JDK-8083664 in AudioFileWriter can be reverted Reviewed-by: prr, amenkov --- .../classes/javax/sound/sampled/spi/AudioFileWriter.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jdk/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java b/jdk/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java index 7ce970b2508..0f137363b8c 100644 --- a/jdk/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java +++ b/jdk/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -129,7 +129,7 @@ public abstract class AudioFileWriter { * system * @throws NullPointerException if {@code stream} or {@code fileType} or * {@code out} are {@code null} - * @see #isFileTypeSupported(AudioFileFormat.Type, AudioInputStream) + * @see #isFileTypeSupported(Type, AudioInputStream) * @see #getAudioFileTypes */ public abstract int write(AudioInputStream stream, Type fileType, @@ -149,7 +149,7 @@ public abstract class AudioFileWriter { * the system * @throws NullPointerException if {@code stream} or {@code fileType} or * {@code out} are {@code null} - * @see #isFileTypeSupported + * @see #isFileTypeSupported(Type, AudioInputStream) * @see #getAudioFileTypes */ public abstract int write(AudioInputStream stream, Type fileType, File out)