From 3be9abe5f1011faf5aed0fa15d40d303ab1ceb34 Mon Sep 17 00:00:00 2001 From: mkx173 Date: Fri, 8 Mar 2024 20:22:38 -0800 Subject: [PATCH] hotfix: remove unnecessary log --- app/src/main/java/gm/tieba/tabswitch/hooker/add/SaveImages.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/java/gm/tieba/tabswitch/hooker/add/SaveImages.java b/app/src/main/java/gm/tieba/tabswitch/hooker/add/SaveImages.java index 823cbb8b..d465ae1e 100644 --- a/app/src/main/java/gm/tieba/tabswitch/hooker/add/SaveImages.java +++ b/app/src/main/java/gm/tieba/tabswitch/hooker/add/SaveImages.java @@ -13,7 +13,6 @@ import java.io.File; import java.io.IOException; -import java.lang.reflect.Array; import java.lang.reflect.Field; import java.net.URL; import java.text.SimpleDateFormat; @@ -100,7 +99,6 @@ protected void afterHookedMethod(final XC_MethodHook.MethodHookParam param) thro } private static void saveImage(final String url, final String filename, final Context context) throws IOException { - XposedBridge.log(url); try (final var is = new URL(url).openStream()) { final var bb = FileUtils.toByteBuffer(is); final var imageDetails = new ContentValues();