Skip to content

Commit 4b36d55

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent a2fcb3a commit 4b36d55

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/framework/src/main/java/org/elasticsearch/entitlement/bootstrap/TestEntitlementBootstrap.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
import java.io.IOException;
3131
import java.io.InputStream;
3232
import java.net.URI;
33-
import java.net.URISyntaxException;
3433
import java.net.URL;
3534
import java.nio.file.Path;
3635
import java.nio.file.Paths;
@@ -135,7 +134,10 @@ private static TestPolicyManager createPolicyManager(PathLookup pathLookup) thro
135134
if (testOnlyPathString == null) {
136135
testOnlyClassPath = Set.of();
137136
} else {
138-
testOnlyClassPath = Arrays.stream(testOnlyPathString.split(separator)).map(Paths::get).map(Path::toUri).collect(toCollection(TreeSet::new));
137+
testOnlyClassPath = Arrays.stream(testOnlyPathString.split(separator))
138+
.map(Paths::get)
139+
.map(Path::toUri)
140+
.collect(toCollection(TreeSet::new));
139141
}
140142

141143
return new TestPolicyManager(

0 commit comments

Comments
 (0)