Compare commits

...

1 Commits

Author SHA1 Message Date
0ac7af2ea3 fix: take into account empty classes 2024-03-28 14:21:23 +02:00

View File

@@ -289,7 +289,7 @@ public class NativeWrapperProvider implements WrapperProvider {
}
private void initType(Class<?> clazz, FunctionValue constr, ObjectValue proto) {
if (constr != null && proto != null) return;
if (constr != null && proto != null || ignore.contains(clazz)) return;
// i vomit
if (
clazz == Object.class ||