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

(-)DirContextURLConnection.java (-1 / +1 lines)
Lines 142-147 Link Here
142
            try {
142
            try {
143
                date = System.currentTimeMillis();
143
                date = System.currentTimeMillis();
144
                String path = getURL().getFile();
144
                String path = getURL().getFile();
145
				path = URL_DECODER.convert(path, false);
145
                if (context instanceof ProxyDirContext) {
146
                if (context instanceof ProxyDirContext) {
146
                    ProxyDirContext proxyDirContext = 
147
                    ProxyDirContext proxyDirContext = 
147
                        (ProxyDirContext) context;
148
                        (ProxyDirContext) context;
Lines 159-165 Link Here
159
                        path = path.substring(contextPath.length());
160
                        path = path.substring(contextPath.length());
160
                    }
161
                    }
161
                }
162
                }
162
                path = URL_DECODER.convert(path, false);
163
                object = context.lookup(path);
163
                object = context.lookup(path);
164
                attributes = context.getAttributes(path);
164
                attributes = context.getAttributes(path);
165
                if (object instanceof Resource)
165
                if (object instanceof Resource)

Return to bug 54249