comparison servlet/src/digilib/io/Directory.java @ 295:90bab835fc25

Servlet version 1.5.0b -- the beginning of the next generation :-) - code restructuring to improve scaleability - new Initialiser servlet that must be run first - image transformation work moved to DigilibImageWorker class - Maximum number of concurrent threads limited by Semaphore - old JIMI toolkit implementation removed
author robcast
date Sun, 24 Oct 2004 20:23:50 +0200
parents 87dca7119596
children 4a45cd965133
comparison
equal deleted inserted replaced
294:5b4fbec16a2c 295:90bab835fc25
80 * 80 *
81 * @return 81 * @return
82 */ 82 */
83 public boolean readDir() { 83 public boolean readDir() {
84 if (dir != null) { 84 if (dir != null) {
85 logger.debug("reading dir: "+dir.getPath()); 85 //logger.debug("reading dir: "+dir.getPath());
86 list = dir.list(); 86 list = dir.list();
87 Arrays.sort(list); 87 Arrays.sort(list);
88 logger.debug(" done"); 88 //logger.debug(" done");
89 } 89 }
90 return (list != null); 90 return (list != null);
91 } 91 }
92 92
93 /** 93 /**