< prev index next >

test/java/lang/reflect/Module/WithSecurityManager.java

Print this page

        

*** 124,134 **** // create a child configuration and layer with this module Layer bootLayer = Layer.boot(); Configuration cf = bootLayer .configuration() ! .resolveRequires(finder, ModuleFinder.of(), Set.of(ANOTHER_MODULE)); Layer layer = bootLayer.defineModulesWithOneLoader(cf, null); Optional<Module> om = layer.findModule(mn); assertTrue("module " + mn + " not in child layer", om.isPresent()); return om.get(); --- 124,134 ---- // create a child configuration and layer with this module Layer bootLayer = Layer.boot(); Configuration cf = bootLayer .configuration() ! .resolve(finder, ModuleFinder.of(), Set.of(ANOTHER_MODULE)); Layer layer = bootLayer.defineModulesWithOneLoader(cf, null); Optional<Module> om = layer.findModule(mn); assertTrue("module " + mn + " not in child layer", om.isPresent()); return om.get();
< prev index next >