feat(gui): save usage data into disk cache
This commit is contained in:
+2
-2
@@ -1,4 +1,4 @@
|
||||
package jadx.gui.utils.codecache;
|
||||
package jadx.gui.utils.cache.code;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Path;
|
||||
@@ -11,7 +11,7 @@ import org.slf4j.LoggerFactory;
|
||||
import jadx.api.ICodeInfo;
|
||||
import jadx.api.impl.NoOpCodeCache;
|
||||
import jadx.core.dex.nodes.ClassNode;
|
||||
import jadx.gui.utils.codecache.disk.DiskCodeCache;
|
||||
import jadx.gui.cache.code.disk.DiskCodeCache;
|
||||
import jadx.tests.api.IntegrationTest;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
+3
-1
@@ -1,4 +1,4 @@
|
||||
package jadx.gui.utils.codecache.disk.adapters;
|
||||
package jadx.gui.utils.cache.code.disk.adapters;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
@@ -9,6 +9,8 @@ import java.io.IOException;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import jadx.gui.cache.code.disk.adapters.DataAdapterHelper;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
class DataAdapterHelperTest {
|
||||
Reference in New Issue
Block a user