saveXml実装

This commit is contained in:
r-ca 2024-01-09 12:37:23 +09:00
parent 3a41c4e105
commit 76f4a6c228
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -188,10 +188,13 @@ public class FileManagerImpl implements FileManager {
@Override
public void saveXml(Document document, String fileName) throws IOException {
this.resolve(fileName);
this.saveXmlInternal(document);
}
@Override
public void saveXml(Document document) throws IOException {
this.saveXmlInternal(document);
}
@Override