< prev index next >

src/java.base/share/classes/sun/reflect/Reflection.java

Print this page

        

@@ -44,10 +44,11 @@
     static {
         Map<Class<?>,String[]> map = new HashMap<Class<?>,String[]>();
         map.put(Reflection.class,
             new String[] {"fieldFilterMap", "methodFilterMap"});
         map.put(System.class, new String[] {"security"});
+        map.put(Class.class, new String[] {"classLoader"});
         fieldFilterMap = map;
 
         methodFilterMap = new HashMap<>();
     }
 
< prev index next >