rootの合致チェックをフラグで切り替えるように

This commit is contained in:
r-ca 2024-01-09 12:00:26 +09:00
parent 8ebc96fa98
commit 0d78f9fa7c
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -106,6 +106,11 @@ public class FileManagerImpl implements FileManager {
return null; return null;
} }
@Override
public FileManager disableRootDirCheck() {
return null;
}
@Override @Override
public FileManager setRootDir(Path rootDir) { public FileManager setRootDir(Path rootDir) {
this.rootDir = rootDir; this.rootDir = rootDir;