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) {