diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2023-01-19 22:51:24 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2023-01-19 22:51:30 +0100 |
commit | e02d0c64cf9bf08530006268f6a4a4777a5ac3cf (patch) | |
tree | d1f870c0dedbebfd4b8d00ebe2b59d3396eba277 /src | |
parent | d3a05b574bd370511726193df619bc03afaaf059 (diff) | |
download | lombok-e02d0c64cf9bf08530006268f6a4a4777a5ac3cf.tar.gz lombok-e02d0c64cf9bf08530006268f6a4a4777a5ac3cf.tar.bz2 lombok-e02d0c64cf9bf08530006268f6a4a4777a5ac3cf.zip |
Replace JDK11 code with JDK6 compatible code to avoid warns/errs during dev only.
Diffstat (limited to 'src')
-rw-r--r-- | src/support/lombok/eclipse/dependencies/DownloadEclipseDependencies.java | 40 | ||||
-rw-r--r-- | src/utils/lombok/core/LombokImmutableList.java | 2 |
2 files changed, 32 insertions, 10 deletions
diff --git a/src/support/lombok/eclipse/dependencies/DownloadEclipseDependencies.java b/src/support/lombok/eclipse/dependencies/DownloadEclipseDependencies.java index 06e26bb6..7bac48cc 100644 --- a/src/support/lombok/eclipse/dependencies/DownloadEclipseDependencies.java +++ b/src/support/lombok/eclipse/dependencies/DownloadEclipseDependencies.java @@ -1,18 +1,18 @@ package lombok.eclipse.dependencies; import java.io.BufferedInputStream; +import java.io.ByteArrayInputStream; import java.io.File; +import java.io.FileOutputStream; import java.io.FilenameFilter; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; +import java.io.OutputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.nio.file.StandardCopyOption; +import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.regex.Matcher; import java.util.regex.Pattern; @@ -70,18 +70,34 @@ public class DownloadEclipseDependencies { } private static void downloadFile(String filename, String repositoryUrl, String target) throws IOException { - Files.createDirectories(Paths.get(target)); - Path targetFile = Paths.get(target, filename); - if (Files.exists(targetFile)) { + new File(target).mkdirs(); + File targetFile = new File(target, filename); + if (targetFile.exists()) { System.out.println("File '" + filename + "' already exists"); return; } System.out.print("Downloading '" + filename + "'... "); + InputStream in = null; + OutputStream out = null; try { - Files.copy(getStreamForUrl(repositoryUrl + filename), targetFile, StandardCopyOption.REPLACE_EXISTING); + in = getStreamForUrl(repositoryUrl + filename); + out = new FileOutputStream(targetFile); + copy(in, out); System.out.println("[done]"); } catch(IOException e) { System.out.println("[error]"); + } finally { + if (in != null) try { in.close(); } catch (Exception ignore) {} + if (out != null) out.close(); + } + } + + private static void copy(InputStream from, OutputStream to) throws IOException { + byte[] b = new byte[4096]; + while (true) { + int r = from.read(b); + if (r == -1) return; + to.write(b, 0, r); } } @@ -126,6 +142,12 @@ public class DownloadEclipseDependencies { sb.append("</library>\n"); sb.append("</eclipse-userlibraries>\n"); - Files.writeString(Paths.get(target, eclipseVersion + ".userlibraries"), sb.toString()); + OutputStream out = null; + try { + out = new FileOutputStream(new File(target, eclipseVersion + ".userlibraries")); + copy(new ByteArrayInputStream(sb.toString().getBytes(StandardCharsets.UTF_8)), out); + } finally { + if (out != null) out.close(); + } } } diff --git a/src/utils/lombok/core/LombokImmutableList.java b/src/utils/lombok/core/LombokImmutableList.java index 4603f2ad..3b9ad89e 100644 --- a/src/utils/lombok/core/LombokImmutableList.java +++ b/src/utils/lombok/core/LombokImmutableList.java @@ -57,7 +57,7 @@ public final class LombokImmutableList<T> implements Iterable<T> { return new LombokImmutableList<T>(new Object[] {a, b, c, d, e}); } - public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e, T f, T... g) { + @SafeVarargs public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e, T f, T... g) { Object[] rest = g == null ? new Object[] {null} : g; Object[] val = new Object[rest.length + 6]; System.arraycopy(rest, 0, val, 6, rest.length); |