This commit is contained in:
r-ca 2024-01-09 12:50:01 +09:00
parent 7cdb005ebb
commit 3a9053e987
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -165,6 +165,26 @@ public class FileManagerImpl implements FileManager {
return this.setPath(resolvedPath);
}
@Override
public FileManager createFile() throws IOException {
return null;
}
@Override
public FileManager createFile(String fileName) throws IOException {
return null;
}
@Override
public FileManager createDirectory() throws IOException {
return null;
}
@Override
public FileManager createDirectory(String directoryName) throws IOException {
return null;
}
// Internal
private void saveXmlInternal(Document document) throws IOException {
try {