Skip to content

Commit a66c843

Browse files
committed
Fix a small test of SshFilesystemAmaze
1 parent a523d8f commit a66c843

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/main/java/com/amaze/filemanager/filesystem/ssh/SshAmazeFilesystem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public boolean canRead(AmazeFile f, @NonNull ContextProvider contextProvider) {
167167
throw new NotImplementedError();
168168
}
169169
public boolean canAccess(AmazeFile f, @NonNull ContextProvider contextProvider) {
170-
throw new NotImplementedError();
170+
return exists(f, contextProvider);
171171
}
172172

173173
public boolean setExecutable(AmazeFile f, boolean enable, boolean owneronly) {

0 commit comments

Comments
 (0)