< prev index next >

modules/graphics/src/main/java/javafx/scene/image/Image.java

Print this page
rev 9619 : [mq]: 9-jake.patch

*** 1102,1113 **** --- 1102,1115 ---- try { if (!URL_QUICKMATCH.matcher(url).matches()) { final ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader(); URL resource; if (url.charAt(0) == '/') { + // FIXME: JIGSAW -- use Class.getResourceAsStream if resource is in a module resource = contextClassLoader.getResource(url.substring(1)); } else { + // FIXME: JIGSAW -- use Class.getResourceAsStream if resource is in a module resource = contextClassLoader.getResource(url); } if (resource == null) { throw new IllegalArgumentException("Invalid URL or resource not found"); }
< prev index next >