This commit is contained in:
Redkale
2020-05-28 09:51:57 +08:00
parent cf5224a5f6
commit 9ade568597

View File

@@ -99,6 +99,8 @@ public interface Creator<T> {
return new AbstractMap.SimpleEntry(params[0], params[1]); return new AbstractMap.SimpleEntry(params[0], params[1]);
} }
}); });
creatorCacheMap.put(AnyValue.DefaultAnyValue.class, (params) -> new AnyValue.DefaultAnyValue());
creatorCacheMap.put(AnyValue.class, (params) -> new AnyValue.DefaultAnyValue());
} }
static class SimpleClassVisitor extends ClassVisitor { static class SimpleClassVisitor extends ClassVisitor {