Skip to content

Commit

Permalink
Merge branch 'mc/1.13' into mc/1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Mar 26, 2020
2 parents b8f66d7 + 85f5d89 commit 533d5e8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ private synchronized void tidy() {
}

private Path resolve(String path) {
if (path.isEmpty() || "/".equals(path)) return folder.toPath();
if (File.separatorChar != '/') path = path.replace('/', File.separatorChar);
if (path.charAt(0) == '/') path = path.substring(1);
Path resolve = folder.toPath();
Expand Down

0 comments on commit 533d5e8

Please sign in to comment.