src/jdk.jpackage/share/classes/jdk/jpackage/internal/IOUtils.java
branchJDK-8200758-branch
changeset 57438 4a31db8d42bd
parent 57407 2c14fbeff1dc
child 57446 5a5b85f00a63
--- a/src/jdk.jpackage/share/classes/jdk/jpackage/internal/IOUtils.java	Fri Jun 21 10:14:49 2019 -0400
+++ b/src/jdk.jpackage/share/classes/jdk/jpackage/internal/IOUtils.java	Thu Jun 27 17:44:18 2019 -0400
@@ -121,31 +121,6 @@
         });
     }
 
-    public static void copyFromURL(URL location, File file) throws IOException {
-        copyFromURL(location, file, false);
-    }
-
-    public static void copyFromURL(URL location, File file, boolean append)
-            throws IOException {
-        if (location == null) {
-            throw new IOException("Missing input resource!");
-        }
-        if (file.exists() && !append) {
-           file.delete();
-        }
-        try (InputStream in = location.openStream();
-            FileOutputStream out = new FileOutputStream(file, append)) {
-
-            byte[] buffer = new byte[1024];
-            int len;
-            while ((len = in.read(buffer)) != -1) {
-                out.write(buffer, 0, len);
-            }
-        }
-        file.setReadOnly();
-        file.setReadable(true, false);
-    }
-
     public static void copyFile(File sourceFile, File destFile)
             throws IOException {
         destFile.getParentFile().mkdirs();