Initialize fieldCache and methodCache before unsafe instance in ReflectionUtil
This commit is contained in:
		| @@ -22,16 +22,25 @@ import io.github.classgraph.ScanResult; | ||||
| import sun.misc.Unsafe; | ||||
|  | ||||
| public class ReflectionUtil { | ||||
|      | ||||
|     private record MethodCacheKey(Class<?> clazz, String methodName, List<Class<?>> parameters) { } | ||||
|     private static final Map<MethodCacheKey, Method> methodCache; | ||||
|  | ||||
|     private record FieldCacheKey(Class<?> clazz, String fieldName) { }; | ||||
|     private static final Map<FieldCacheKey, Field> fieldCache; | ||||
|      | ||||
|     private static final Unsafe sunMiscUnsafeInstance; | ||||
|  | ||||
|     static { | ||||
|     	methodCache = new HashMap<>(); | ||||
|     	fieldCache = new HashMap<>(); | ||||
|  | ||||
|         try { | ||||
|             sunMiscUnsafeInstance = (Unsafe) field("theUnsafe") | ||||
|             		.inClass(Unsafe.class) | ||||
|             		.getStaticValue(); | ||||
|         } catch (Exception e) { | ||||
|             throw new RuntimeException(e); | ||||
|             throw new RuntimeException("Cannot access to " + Unsafe.class + ".theUnsafe value.", e); | ||||
|         } | ||||
|     } | ||||
|      | ||||
| @@ -40,12 +49,6 @@ public class ReflectionUtil { | ||||
|      | ||||
|      | ||||
|      | ||||
|     private record MethodCacheKey(Class<?> clazz, String methodName, List<Class<?>> parameters) { } | ||||
|     private static final Map<MethodCacheKey, Method> methodCache = new HashMap<>(); | ||||
|  | ||||
|     private record FieldCacheKey(Class<?> clazz, String fieldName) { }; | ||||
|     private static final Map<FieldCacheKey, Field> fieldCache = new HashMap<>(); | ||||
|      | ||||
|      | ||||
|      | ||||
|      | ||||
|   | ||||
		Reference in New Issue
	
	Block a user