mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +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);
|
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
|
// Internal
|
||||||
private void saveXmlInternal(Document document) throws IOException {
|
private void saveXmlInternal(Document document) throws IOException {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user