Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Sep 14, 2020
1 parent 5f708fc commit 70788ac
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,15 @@ private Optional<File> compileClass(final String name) {
}

private String buildClassPath() {
return buildClassPath(urls) + getClassPathSeparator() + System.getProperty("java.class.path");
return buildClassPath(urls)
+ getClassPathSeparator()
+ System.getProperty("java.class.path");
}

private String getClassPathSeparator() {
if(isWindows()) {
if (isWindows()) {
return ";";
}
else {
} else {
return ":";
}
}
Expand Down

0 comments on commit 70788ac

Please sign in to comment.