--- old/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java 2018-06-20 18:27:52.000000000 -0700 +++ new/src/java.desktop/share/classes/javax/sound/sampled/spi/AudioFileWriter.java 2018-06-20 18:27:51.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2018, 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 @@ -28,7 +28,7 @@ import java.io.File; import java.io.IOException; import java.io.OutputStream; -import java.util.Objects; +import java.util.Arrays; import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.AudioSystem; @@ -63,17 +63,8 @@ * {@code false} * @throws NullPointerException if {@code fileType} is {@code null} */ - public boolean isFileTypeSupported(Type fileType) { - Objects.requireNonNull(fileType); - - Type types[] = getAudioFileTypes(); - - for(int i=0; i