Skip to content

Commit

Permalink
style: spotless apply
Browse files Browse the repository at this point in the history
  • Loading branch information
gotson committed Oct 3, 2023
1 parent d4f4dc2 commit 77339ed
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/test/java/org/sqlite/MultipleClassLoaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,7 @@ public void multipleClassLoader() throws Throwable {
// find the slf4j-api jar
String targetSlf4j = Paths.get("org", "slf4j", "slf4j-api").toString();
Optional<String> slf4jApi =
Arrays.stream(stringUrls)
.filter(s -> s.contains(targetSlf4j))
.findFirst();
Arrays.stream(stringUrls).filter(s -> s.contains(targetSlf4j)).findFirst();
if (!slf4jApi.isPresent()) fail("Couldn't find slf4j-api");

// Create a JAR file out the classes and resources
Expand Down

0 comments on commit 77339ed

Please sign in to comment.