mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
impl
This commit is contained in:
parent
7cdb005ebb
commit
3a9053e987
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user