Revert "WIP"

This reverts commit 30ed65079b.
This commit is contained in:
r-ca 2024-01-09 15:10:27 +09:00
parent 30ed65079b
commit 1b676f8368
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -153,22 +153,22 @@ public class FileManagerImpl implements FileManager {
@Override
public FileManager setRootDir(Path rootDir) {
return this.newInstance(rootDir, this.path, this.autoCreateParent, this.disableRootDirCheck);
this.rootDir = rootDir;
return this;
}
@Override
public FileManager setPath(Path path) {
Path resolvedPath;
if (this.disableRootDirCheck) {
resolvedPath = path;
this.path = path;
} else {
if (path.startsWith(this.rootDir)) {
resolvedPath = path;
this.path = path;
} else {
throw new IllegalArgumentException("path must be in rootDir");
}
}
return this.newInstance(this.rootDir, resolvedPath, this.autoCreateParent, this.disableRootDirCheck);
return this;
}
@Override