Save系のメソッドからチェーンできる必要はなさそうなので戻り値をvoidに fix

This commit is contained in:
r-ca 2024-01-09 12:36:55 +09:00
parent 301678658c
commit 3a41c4e105
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -188,22 +188,18 @@ public class FileManagerImpl implements FileManager {
@Override
public void saveXml(Document document, String fileName) throws IOException {
return null;
}
@Override
public void saveXml(Document document) throws IOException {
return null;
}
@Override
public void saveBitmap(Bitmap bitmap, String fileName) throws IOException {
return null;
}
@Override
public void saveBitmap(Bitmap bitmap) throws IOException {
return null;
}
@Override