jdk/src/java.base/share/classes/java/lang/invoke/StringConcatFactory.java
changeset 37781 71ed5645f17c
parent 37684 38b7cb606a05
child 38428 0079e7d659db
equal deleted inserted replaced
37780:06f3783b338f 37781:71ed5645f17c
   195         // CACHE_ENABLE = false; // implied
   195         // CACHE_ENABLE = false; // implied
   196         // CACHE = null;         // implied
   196         // CACHE = null;         // implied
   197         // DEBUG = false;        // implied
   197         // DEBUG = false;        // implied
   198         // DUMPER = null;        // implied
   198         // DUMPER = null;        // implied
   199 
   199 
   200         Properties props = GetPropertyAction.getProperties();
   200         Properties props = GetPropertyAction.privilegedGetProperties();
   201         final String strategy =
   201         final String strategy =
   202                 props.getProperty("java.lang.invoke.stringConcat");
   202                 props.getProperty("java.lang.invoke.stringConcat");
   203         CACHE_ENABLE = Boolean.parseBoolean(
   203         CACHE_ENABLE = Boolean.parseBoolean(
   204                 props.getProperty("java.lang.invoke.stringConcat.cache"));
   204                 props.getProperty("java.lang.invoke.stringConcat.cache"));
   205         DEBUG = Boolean.parseBoolean(
   205         DEBUG = Boolean.parseBoolean(