File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/main/java/com/falsepattern/lib/internal/impl/dependencies Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -236,10 +236,8 @@ public static CompletableFuture<Void> loadLibrariesAsync(Library... libraries) {
236
236
237
237
private static boolean scanForDepSpecs (URL source , List <URL > output ) {
238
238
if (!source .getProtocol ().equals ("file" )) {
239
- LOG .warn ("Skipping non-file source: {}" , source );
240
239
return false ;
241
240
}
242
- LOG .debug ("Scanning {} for dependencies" , source );
243
241
val fileName = source .getFile ();
244
242
boolean found = false ;
245
243
if (fileName .endsWith (".jar" )) {
@@ -300,10 +298,8 @@ private static Stream<URL> grabSourceCandidatesFromFolder(File folder) {
300
298
} else {
301
299
return Arrays .stream (files ).map (file -> {
302
300
try {
303
- LOG .trace ("Adding {} to dependency source list" , file );
304
301
return file .toURI ().toURL ();
305
302
} catch (MalformedURLException e ) {
306
- LOG .error ("Failed to add mod file {} to dependency source list: {}" , file .getName (), e );
307
303
return null ;
308
304
}
309
305
}).filter (Objects ::nonNull );
You can’t perform that action at this time.
0 commit comments