--- old/src/java.desktop/share/classes/javax/imageio/stream/ImageOutputStream.java 2018-10-01 10:00:10.466026000 +0700 +++ new/src/java.desktop/share/classes/javax/imageio/stream/ImageOutputStream.java 2018-10-01 10:00:09.930026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2000, 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 @@ -87,7 +87,7 @@ * {@code null}. * @exception IOException if an I/O error occurs. */ - void write(byte b[]) throws IOException; + void write(byte[] b) throws IOException; /** * Writes a sequence of bytes to the stream at the current @@ -114,7 +114,7 @@ * {@code null}. * @exception IOException if an I/O error occurs. */ - void write(byte b[], int off, int len) throws IOException; + void write(byte[] b, int off, int len) throws IOException; /** * Writes a {@code boolean} value to the stream. If