From 507ce1e495f89e9668fac84ac1c9c5d59007145f Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Thu, 18 May 2023 17:34:59 +0200 Subject: [PATCH] refactor(youtube/settings): increase fingerprint robustness --- .../java/app/revanced/integrations/utils/ThemeHelper.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/integrations/java/app/revanced/integrations/utils/ThemeHelper.java b/integrations/java/app/revanced/integrations/utils/ThemeHelper.java index cbb103942..3804d186e 100644 --- a/integrations/java/app/revanced/integrations/utils/ThemeHelper.java +++ b/integrations/java/app/revanced/integrations/utils/ThemeHelper.java @@ -3,13 +3,6 @@ package app.revanced.integrations.utils; public class ThemeHelper { private static int themeValue; - public static void setTheme(int value) { - if (themeValue != value) { - themeValue = value; - LogHelper.printDebug(() -> "Theme value: " + themeValue); - } - } - public static void setTheme(Object value) { final int newOrdinalValue = ((Enum) value).ordinal(); if (themeValue != newOrdinalValue) {