--- old/src/java.desktop/share/classes/sun/awt/datatransfer/DataTransferer.java 2018-10-01 10:02:21.746026000 +0700 +++ new/src/java.desktop/share/classes/sun/awt/datatransfer/DataTransferer.java 2018-10-01 10:02:21.210026000 +0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2000, 2015, 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 @@ -1152,7 +1152,7 @@ try (ByteArrayInputStream str = new ByteArrayInputStream(bytes)) { - URI uris[] = dragQueryURIs(str, format, localeTransferable); + URI[] uris = dragQueryURIs(str, format, localeTransferable); if (uris == null) { return null; } @@ -1295,7 +1295,7 @@ && DataFlavor.javaFileListFlavor.equals(flavor)) { - URI uris[] = dragQueryURIs(str, format, localeTransferable); + URI[] uris = dragQueryURIs(str, format, localeTransferable); if (uris == null) { return null; }