refactor(general-ads): remove unused method

This commit is contained in:
oSumAtrIX 2022-10-01 04:02:02 +02:00
parent c7756e1299
commit 1010eedbb2
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -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 <T> boolean anyMatch(List<T> value, APredicate<? super T> predicate) {
for (T t : value) {
if (predicate.test(t)) return true;