comparison servlet/src/digilib/io/DocuDirCache.java @ 469:501f685ae8d0

modified DocuDirent.compareTo instead of ImageFileset.compareTo
author hertzhaft
date Wed, 12 Apr 2006 14:12:37 +0200
parents 433a8f63fce3
children 53b768f418aa
comparison
equal deleted inserted replaced
468:433a8f63fce3 469:501f685ae8d0
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