diff --git a/testlib/build.gradle b/testlib/build.gradle index 5aad81bae2..38e598369e 100644 --- a/testlib/build.gradle +++ b/testlib/build.gradle @@ -7,7 +7,7 @@ apply from: rootProject.file('gradle/java-setup.gradle') dependencies { api projects.lib - // api files(projects.lib.dependencyProject.sourceSets.sortPom.output.classesDirs) + api files(projects.lib.dependencyProject.sourceSets.sortPom.output.classesDirs) api "com.diffplug.durian:durian-core:${VER_DURIAN}" api "com.diffplug.durian:durian-testlib:${VER_DURIAN}" api "org.junit.jupiter:junit-jupiter:${VER_JUNIT}" diff --git a/testlib/src/main/java/com/diffplug/spotless/ResourceHarness.java b/testlib/src/main/java/com/diffplug/spotless/ResourceHarness.java index 88295a3346..0304889e1f 100644 --- a/testlib/src/main/java/com/diffplug/spotless/ResourceHarness.java +++ b/testlib/src/main/java/com/diffplug/spotless/ResourceHarness.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2024 DiffPlug + * Copyright 2016-2023 DiffPlug * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,7 +100,6 @@ protected static boolean existsTestResource(String filename) { private static Optional getTestResourceUrl(String filename) { URL url = ResourceHarness.class.getResource("/" + filename); - // System.out.println(url.getPath()); return Optional.ofNullable(url); }