Skip to content

Commit

Permalink
Merge branch '3.2.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed May 9, 2024
2 parents 5e4796f + 24bfe50 commit 348ed47
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -106,9 +106,8 @@ private static NestedLocation create(String location) {
}

private static Path asPath(String locationPath) {
return pathCache.computeIfAbsent(locationPath, (key) -> {
return Path.of((!isWindows()) ? locationPath : fixWindowsLocationPath(locationPath));
});
return pathCache.computeIfAbsent(locationPath,
(key) -> Path.of((!isWindows()) ? locationPath : fixWindowsLocationPath(locationPath)));
}

private static boolean isWindows() {
Expand Down

0 comments on commit 348ed47

Please sign in to comment.