Problem seems solved. Removing debug log message

This commit is contained in:
Marc Baloup 2022-06-22 00:51:20 +02:00
parent 7958589d1a
commit db27f9e15f
Signed by: marcbal
GPG Key ID: BBC0FE3ABC30B893
1 changed files with 0 additions and 1 deletions

View File

@ -476,7 +476,6 @@ public class ReflectRegistry {
private static void initRecursively(Class<?> cl) {
try {
Log.info("Init reflect registry class " + cl + "...");
for (Field f : Reflect.ofClass(cl).get().getDeclaredFields()) {
if (Modifier.isStatic(f.getModifiers()))
f.get(null);