From 92d147ab65c698861df9483346c167827c40a062 Mon Sep 17 00:00:00 2001 From: r-ca Date: Mon, 25 Dec 2023 11:45:33 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"save/load/remove=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=20Impl=20WIP"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 1eee31316ae4bdbba3cf01a087934d0db717c555. --- .../lacerta/source/file/impl/FileManagerImpl.java | 14 -------------- 1 file changed, 14 deletions(-) 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 87b38286..e40a5551 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,7 +2,6 @@ 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; @@ -86,7 +85,6 @@ public class FileManagerImpl implements FileManager { @Override public void saveBitmap(Path path, Bitmap bitmap) { - } @Override @@ -98,16 +96,4 @@ 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 - } }