重複したメソッドを削除

This commit is contained in:
r-ca 2024-01-09 12:40:07 +09:00
parent f36dc05db1
commit 3e2a295a22
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9
2 changed files with 0 additions and 7 deletions

View File

@ -19,8 +19,6 @@ public interface FileManager {
boolean isFile();
boolean isWritable();
boolean isReadable();
Document readXml();
// Get current instance
FileManager getCurrentInstance();

View File

@ -116,11 +116,6 @@ public class FileManagerImpl implements FileManager {
}
}
@Override
public Document readXml() {
return null;
}
@Override
public FileManager getCurrentInstance() {
return this;