View | Details | Raw Unified | Return to bug 57574
Collapse All | Expand All

(-)a/java/javax/el/ImportHandler.java (+1 lines)
Lines 130-135 public class ImportHandler { Link Here
130
            // from that package. Check if the package exists.
130
            // from that package. Check if the package exists.
131
            ClassLoader cl = Thread.currentThread().getContextClassLoader();
131
            ClassLoader cl = Thread.currentThread().getContextClassLoader();
132
            String path = name.replace('.', '/');
132
            String path = name.replace('.', '/');
133
            path = path + "/";
133
            URL url = cl.getResource(path);
134
            URL url = cl.getResource(path);
134
            if (url == null) {
135
            if (url == null) {
135
                throw new ELException(Util.message(
136
                throw new ELException(Util.message(

Return to bug 57574