< prev index next >

src/java.base/share/classes/jdk/internal/module/ModulePath.java

Print this page
rev 47483 : [mq]: XXXXXXX-double-trouble-2

*** 110,137 **** Objects.requireNonNull(entry); } } /** ! * Returns a ModuleFinder that that locates modules on the file system by * searching a sequence of directories and/or packaged modules. The modules * may be patched by the given ModulePatcher. */ public static ModuleFinder of(ModulePatcher patcher, Path... entries) { return new ModulePath(JarFile.runtimeVersion(), false, patcher, entries); } /** ! * Returns a ModuleFinder that that locates modules on the file system by * searching a sequence of directories and/or packaged modules. */ public static ModuleFinder of(Path... entries) { return of((ModulePatcher)null, entries); } /** ! * Returns a ModuleFinder that that locates modules on the file system by * searching a sequence of directories and/or packaged modules. * * @param version The release version to use for multi-release JAR files * @param isLinkPhase {@code true} if the link phase to locate JMOD files */ --- 110,137 ---- Objects.requireNonNull(entry); } } /** ! * Returns a ModuleFinder that locates modules on the file system by * searching a sequence of directories and/or packaged modules. The modules * may be patched by the given ModulePatcher. */ public static ModuleFinder of(ModulePatcher patcher, Path... entries) { return new ModulePath(JarFile.runtimeVersion(), false, patcher, entries); } /** ! * Returns a ModuleFinder that locates modules on the file system by * searching a sequence of directories and/or packaged modules. */ public static ModuleFinder of(Path... entries) { return of((ModulePatcher)null, entries); } /** ! * Returns a ModuleFinder that locates modules on the file system by * searching a sequence of directories and/or packaged modules. * * @param version The release version to use for multi-release JAR files * @param isLinkPhase {@code true} if the link phase to locate JMOD files */
< prev index next >