This commit is contained in:
r-ca 2024-01-09 11:56:50 +09:00
parent c513b44e8d
commit 2233bb1a35
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -107,7 +107,11 @@ public class FileManagerImpl implements FileManager {
@Override
public FileManager setPath(Path path) {
return null;
if (path.startsWith(this.rootDir)) {
this.path = path;
} else {
// placeholder
}
}
@Override