mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +00:00
Save系のメソッドからチェーンできる必要はなさそうなので戻り値をvoidに fix
This commit is contained in:
parent
301678658c
commit
3a41c4e105
|
@ -188,22 +188,18 @@ public class FileManagerImpl implements FileManager {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveXml(Document document, String fileName) throws IOException {
|
public void saveXml(Document document, String fileName) throws IOException {
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveXml(Document document) throws IOException {
|
public void saveXml(Document document) throws IOException {
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveBitmap(Bitmap bitmap, String fileName) throws IOException {
|
public void saveBitmap(Bitmap bitmap, String fileName) throws IOException {
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void saveBitmap(Bitmap bitmap) throws IOException {
|
public void saveBitmap(Bitmap bitmap) throws IOException {
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue
Block a user