Changeset 10643
- Timestamp:
- 2005-09-26T15:10:56+12:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gli/src/org/greenstone/gatherer/LocalLibraryServer.java
r10642 r10643 84 84 static public boolean isRunning() 85 85 { 86 return running; 86 if (!running) return false; 87 gsdlsite_cfg_file.load(); 88 if (gsdlsite_cfg_file.getURL() == null) return false; 89 return true; 87 90 } 88 91 … … 225 228 226 229 static public void checkServerRunning() { 230 if (!running) return; // don't worry about it if its not supposed to be running 227 231 gsdlsite_cfg_file.load(); 228 232 if (gsdlsite_cfg_file.getURL() == null) {
Note:
See TracChangeset
for help on using the changeset viewer.