Skip to content

Commit

Permalink
Fixes #85 - Implement isDirectory for File implementation (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Sep 21, 2023
1 parent 81dfeb8 commit 6524c0b
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,9 @@ public VirtualFile getFile(String path) {
public List<VirtualFile> getFiles() {
throw new UnsupportedOperationException("Not supported yet.");
}

@Override
public boolean isDirectory() {
return file.isDirectory();
}
}

0 comments on commit 6524c0b

Please sign in to comment.