--- old/src/java.desktop/share/classes/com/sun/imageio/plugins/common/InputStreamAdapter.java 2018-10-01 09:57:29.402026000 +0700 +++ new/src/java.desktop/share/classes/com/sun/imageio/plugins/common/InputStreamAdapter.java 2018-10-01 09:57:28.894026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 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 @@ -43,7 +43,7 @@ return stream.read(); } - public int read(byte b[], int off, int len) throws IOException { + public int read(byte[] b, int off, int len) throws IOException { return stream.read(b, off, len); } }