src/java.base/share/classes/jdk/internal/loader/BuiltinClassLoader.java
changeset 57714 9f44485e7441
parent 54471 f22759e92191
child 57792 1b6806340400
equal deleted inserted replaced
57713:0211b062843d 57714:9f44485e7441
   181         super(name, parent == null || parent == ClassLoaders.bootLoader() ? null : parent);
   181         super(name, parent == null || parent == ClassLoaders.bootLoader() ? null : parent);
   182 
   182 
   183         this.parent = parent;
   183         this.parent = parent;
   184         this.ucp = ucp;
   184         this.ucp = ucp;
   185 
   185 
   186         this.nameToModule = new ConcurrentHashMap<>();
   186         this.nameToModule = new ConcurrentHashMap<>(32);
   187         this.moduleToReader = new ConcurrentHashMap<>();
   187         this.moduleToReader = new ConcurrentHashMap<>();
   188     }
   188     }
   189 
   189 
   190     /**
   190     /**
   191      * Returns {@code true} if there is a class path associated with this
   191      * Returns {@code true} if there is a class path associated with this