Unreflect more stuff

This commit is contained in:
2026-06-11 22:35:13 +02:00
parent 2bc164c1b0
commit 932732737d
21 changed files with 162 additions and 476 deletions
@@ -39,11 +39,6 @@ public class WideningTransformer implements ClassFileTransformer {
@Override
public byte[] transform(ClassLoader loader, String className, Class<?> classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) {
byte[] result = patcher.patch(className, classfileBuffer);
if (result == null) {
return classfileBuffer;
} else {
return result;
}
return patcher.patch(className, classfileBuffer);
}
}