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

(-)JspServletWrapper.java.original (+22 lines)
Lines 253-258 Link Here
253
	return null;
253
	return null;
254
    }
254
    }
255
255
256
    public java.util.Map getDependantToLastModified() {
257
        try {
258
            Object target = getServlet();
259
            if (target != null && target instanceof JspSourceDependent) {
260
                return ((JspSourceDependent) target).getDependantToLastModified();
261
	         }
262
        } catch (Throwable ex) {
263
        }
264
        return null; 
265
    }
266
    
267
    public long getLastModified() {
268
        try {
269
            Object target = getServlet();
270
            if (target != null && target instanceof JspSourceDependent) {
271
                return ((JspSourceDependent) target).getLastModified();
272
	         }
273
        } catch (Throwable ex) {
274
        }
275
        return 0;
276
    }
277
    
256
    public boolean isTagFile() {
278
    public boolean isTagFile() {
257
	return this.isTagFile;
279
	return this.isTagFile;
258
    }
280
    }

Return to bug 33453