From e6d47ac7a5790911c2bff680d2c04c5c1a61505c Mon Sep 17 00:00:00 2001 From: DHD2280 Date: Sat, 14 Dec 2024 20:38:00 +0100 Subject: [PATCH] Remove useless logs Signed-off-by: DHD2280 --- .../xposed/hooks/systemui/statusbar/BatteryStyleManager.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/java/it/dhd/oxygencustomizer/xposed/hooks/systemui/statusbar/BatteryStyleManager.java b/app/src/main/java/it/dhd/oxygencustomizer/xposed/hooks/systemui/statusbar/BatteryStyleManager.java index 20c778ce..a3d6f726 100644 --- a/app/src/main/java/it/dhd/oxygencustomizer/xposed/hooks/systemui/statusbar/BatteryStyleManager.java +++ b/app/src/main/java/it/dhd/oxygencustomizer/xposed/hooks/systemui/statusbar/BatteryStyleManager.java @@ -497,7 +497,6 @@ private void refreshAllBatteryIcons() { } private void updateBatteryViewValues(View view) { - log("updateBatteryViewValues called"); TextView batteryOutPercentage = null; try { batteryOutPercentage = view.findViewById(mContext.getResources().getIdentifier("battery_percentage_view", "id", mContext.getPackageName())); @@ -546,7 +545,6 @@ private void updateBatteryViewValues(View view) { } } if (CustomBatteryEnabled && batteryIcon != null) { - log("CustomBatteryEnabled && batteryIcon != null"); scaleBatteryMeterViews(batteryIcon); updateBatteryRotation(batteryIcon); updateFlipper(batteryIcon.getParent()); @@ -602,7 +600,6 @@ private void updateBatteryViewValues(View view) { } private void updateIconsColor() { - log("updateIconsColor " + batteryViews.size()); if (batteryViews.isEmpty()) return; for (View v : batteryViews) { if (v instanceof ImageView) {