Skip to content

Commit

Permalink
Merge pull request #9562 from stuartwdouglas/9515
Browse files Browse the repository at this point in the history
Make sure to use normalised paths
  • Loading branch information
stuartwdouglas authored May 25, 2020
2 parents 69b525a + 054f4f6 commit a860bd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class DirectoryClassPathElement extends AbstractClassPathElement {

public DirectoryClassPathElement(Path root) {
assert root != null : "root is null";
this.root = root;
this.root = root.normalize();
}

@Override
Expand Down

0 comments on commit a860bd9

Please sign in to comment.