diff --git a/integrations/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java b/integrations/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java index 46589e65f..051e10bab 100644 --- a/integrations/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java +++ b/integrations/java/app/revanced/integrations/patches/GeneralBytecodeAdsPatch.java @@ -104,13 +104,6 @@ public class GeneralBytecodeAdsPatch { return false; } - private static String bytesToHex(byte[] bytes) { - StringBuilder builder = new StringBuilder(bytes.length * 2); - for (byte b : bytes) - builder.append(String.format("%02x", b)); - return builder.toString(); - } - private static boolean anyMatch(List value, APredicate predicate) { for (T t : value) { if (predicate.test(t)) return true;