jdk/src/java.base/share/classes/jdk/internal/reflect/ReflectionFactory.java
changeset 37781 71ed5645f17c
parent 37593 824750ada3d6
child 41608 bb724835848f
equal deleted inserted replaced
37780:06f3783b338f 37781:71ed5645f17c
   396         if (System.out == null) {
   396         if (System.out == null) {
   397             // java.lang.System not yet fully initialized
   397             // java.lang.System not yet fully initialized
   398             return;
   398             return;
   399         }
   399         }
   400 
   400 
   401         Properties props = GetPropertyAction.getProperties();
   401         Properties props = GetPropertyAction.privilegedGetProperties();
   402         String val = props.getProperty("sun.reflect.noInflation");
   402         String val = props.getProperty("sun.reflect.noInflation");
   403         if (val != null && val.equals("true")) {
   403         if (val != null && val.equals("true")) {
   404             noInflation = true;
   404             noInflation = true;
   405         }
   405         }
   406 
   406