From 1eee31316ae4bdbba3cf01a087934d0db717c555 Mon Sep 17 00:00:00 2001 From: r-ca Date: Mon, 25 Dec 2023 11:44:58 +0900 Subject: [PATCH] =?UTF-8?q?save/load/remove=E3=82=92=E8=BF=BD=E5=8A=A0=20I?= =?UTF-8?q?mpl=20WIP?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lacerta/source/file/impl/FileManagerImpl.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java index e40a5551..87b38286 100644 --- a/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java +++ b/source/src/main/java/one/nem/lacerta/source/file/impl/FileManagerImpl.java @@ -2,6 +2,7 @@ package one.nem.lacerta.source.file.impl; import android.graphics.Bitmap; +import java.io.File; import java.io.IOException; import java.nio.file.DirectoryStream; import java.nio.file.Files; @@ -85,6 +86,7 @@ public class FileManagerImpl implements FileManager { @Override public void saveBitmap(Path path, Bitmap bitmap) { + } @Override @@ -96,4 +98,16 @@ public class FileManagerImpl implements FileManager { public void removeBitmap(Path path) { } + + private void saveFile(File file) { + // Internal + } + + private void loadFile(File file) { + // Internal + } + + private void removeFile(File file) { + // Internal + } }