refactor(general-ads): remove unused method

This commit is contained in:
oSumAtrIX 2022-10-01 04:02:02 +02:00
parent 230ae2f668
commit 6a3242f943

View File

@ -104,13 +104,6 @@ public class GeneralBytecodeAdsPatch {
return false; 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 <T> boolean anyMatch(List<T> value, APredicate<? super T> predicate) { private static <T> boolean anyMatch(List<T> value, APredicate<? super T> predicate) {
for (T t : value) { for (T t : value) {
if (predicate.test(t)) return true; if (predicate.test(t)) return true;