--- a/hotspot/test/runtime/modules/AccessCheck/CheckRead.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/CheckRead.java Mon May 23 09:30:18 2016 -0700
@@ -103,7 +103,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_CheckRead.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_CheckRead.java Mon May 23 09:30:18 2016 -0700
@@ -103,7 +103,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -105,7 +105,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpQualToM1.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpQualToM1.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpUnqual.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_ExpUnqual.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_PkgNotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_PkgNotExp.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_Umod.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MyDiffClassLoader.loader1 = new MyDiffClassLoader();
MyDiffClassLoader.loader2 = new MyDiffClassLoader();
@@ -141,7 +141,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MyDiffClassLoader.loader1 = new MyDiffClassLoader();
MyDiffClassLoader.loader2 = new MyDiffClassLoader();
@@ -190,7 +190,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MyDiffClassLoader.loader1 = new MyDiffClassLoader();
MyDiffClassLoader.loader2 = new MyDiffClassLoader();
--- a/hotspot/test/runtime/modules/AccessCheck/DiffCL_UmodUpkg.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/DiffCL_UmodUpkg.java Mon May 23 09:30:18 2016 -0700
@@ -87,7 +87,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MyDiffClassLoader.loader1 = new MyDiffClassLoader();
MyDiffClassLoader.loader2 = new MyDiffClassLoader();
@@ -136,7 +136,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MyDiffClassLoader.loader1 = new MyDiffClassLoader();
MyDiffClassLoader.loader2 = new MyDiffClassLoader();
--- a/hotspot/test/runtime/modules/AccessCheck/ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -105,7 +105,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/ExpQualToM1.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/ExpQualToM1.java Mon May 23 09:30:18 2016 -0700
@@ -81,7 +81,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to the same class loader for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/ExpUnqual.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/ExpUnqual.java Mon May 23 09:30:18 2016 -0700
@@ -81,7 +81,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to the same class loader for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/ExportAllUnnamed.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/ExportAllUnnamed.java Mon May 23 09:30:18 2016 -0700
@@ -93,7 +93,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/PkgNotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/PkgNotExp.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to the same class loader for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/Umod.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/Umod.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map module m1 to class loader.
// class c2 will be loaded in an unnamed module/loader.
@@ -138,7 +138,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MySameClassLoader loader = new MySameClassLoader();
// map module m1 to class loader.
@@ -184,7 +184,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MySameClassLoader loader = new MySameClassLoader();
// map module m1 to class loader.
--- a/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_ExpUnqual.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_ExpUnqual.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_PkgNotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodDiffCL_PkgNotExp.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodUPkg.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodUPkg.java Mon May 23 09:30:18 2016 -0700
@@ -87,7 +87,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map module m1 to class loader.
// class c4 will be loaded in an unnamed module/loader.
@@ -133,7 +133,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
MySameClassLoader loader = new MySameClassLoader();
// map module m1 to class loader.
--- a/hotspot/test/runtime/modules/AccessCheck/UmodUpkgDiffCL_ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodUpkgDiffCL_ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -92,7 +92,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodUpkgDiffCL_NotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodUpkgDiffCL_NotExp.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodUpkg_ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodUpkg_ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -101,7 +101,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/UmodUpkg_NotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/UmodUpkg_NotExp.java Mon May 23 09:30:18 2016 -0700
@@ -89,7 +89,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to the same class loader for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/Umod_ExpQualOther.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/Umod_ExpQualOther.java Mon May 23 09:30:18 2016 -0700
@@ -101,7 +101,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/Umod_ExpUnqual.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/Umod_ExpUnqual.java Mon May 23 09:30:18 2016 -0700
@@ -91,7 +91,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to differing class loaders for this test
Map<String, ClassLoader> map = new HashMap<>();
--- a/hotspot/test/runtime/modules/AccessCheck/Umod_PkgNotExp.java Fri May 20 11:23:53 2016 -0700
+++ b/hotspot/test/runtime/modules/AccessCheck/Umod_PkgNotExp.java Mon May 23 09:30:18 2016 -0700
@@ -89,7 +89,7 @@
// Resolves "m1"
Configuration cf = Layer.boot()
.configuration()
- .resolveRequires(finder, ModuleFinder.empty(), Set.of("m1"));
+ .resolveRequires(finder, ModuleFinder.of(), Set.of("m1"));
// map each module to the same class loader for this test
Map<String, ClassLoader> map = new HashMap<>();