Skip to content

Commit

Permalink
fix issue298
Browse files Browse the repository at this point in the history
  • Loading branch information
dota17 committed Aug 1, 2020
1 parent 9a1ac08 commit efca973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/reflections/vfs/SystemDir.java
Expand Up @@ -25,7 +25,7 @@ public String getPath() {
if (file == null) {
return "/NO-SUCH-DIRECTORY/";
}
return file.getPath().replace("\\", "/");
return file.getPath();
}

public Iterable<Vfs.File> getFiles() {
Expand Down

0 comments on commit efca973

Please sign in to comment.