comparison servlet/src/digilib/io/DocuDirCache.java @ 473:fca40a188a22

modified DocuDirent.compareTo instead of ImageFileset.compareTo
author hertzhaft
date Wed, 12 Apr 2006 14:12:37 +0200
parents f8ca069517a2
children e758a49258e8
comparison
equal deleted inserted replaced
472:f8ca069517a2 473:fca40a188a22
242 if (dd.isValid()) { 242 if (dd.isValid()) {
243 try { 243 try {
244 // logger.debug(dd + " is valid"); 244 // logger.debug(dd + " is valid");
245 return dd.get(n, fc); 245 return dd.get(n, fc);
246 } catch (IndexOutOfBoundsException e) { 246 } catch (IndexOutOfBoundsException e) {
247 logger.debug(fn + ": index out of bounds"); 247 // logger.debug(fn + " not found in directory");
248 } 248 }
249 } 249 }
250 return null; 250 return null;
251 } 251 }
252 252