diff --git a/buildSrc/src/main/java/net/neoforged/neodev/installer/LibraryCollector.java b/buildSrc/src/main/java/net/neoforged/neodev/installer/LibraryCollector.java index 24b7e65d4b..9e7b370873 100644 --- a/buildSrc/src/main/java/net/neoforged/neodev/installer/LibraryCollector.java +++ b/buildSrc/src/main/java/net/neoforged/neodev/installer/LibraryCollector.java @@ -40,14 +40,6 @@ public static List resolveLibraries(List repositoryUrls, Collectio var result = collector.libraries.stream().map(future -> { try { return future.get(); - } catch (ExecutionException e) { - if (e.getCause() instanceof RuntimeException re) { - throw re; - } else if (e.getCause() instanceof IOException re) { - throw new UncheckedIOException(re); - } else { - throw new RuntimeException(e); - } } catch (Exception e) { throw new RuntimeException(e); }