< prev index next >

src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/ExcludeVMPlugin.java

Print this page

        

*** 206,216 **** target = Jvm.MINIMAL; exclude = "/java.base/native*server/*,/java.base/native*client/*"; break; } default: { ! throw new PluginException("Unknown option " + value); } } predicate = new ResourceFilter(Utils.listParser.apply(exclude), true); } catch (IOException ex) { throw new UncheckedIOException(ex); --- 206,216 ---- target = Jvm.MINIMAL; exclude = "/java.base/native*server/*,/java.base/native*client/*"; break; } default: { ! throw new IllegalArgumentException("Unknown exclude VM option: " + value); } } predicate = new ResourceFilter(Utils.listParser.apply(exclude), true); } catch (IOException ex) { throw new UncheckedIOException(ex);
< prev index next >