- Timestamp:
- 07/05/08 22:16:05 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/server/src/ome/services/sessions/SessionManagerImpl.java
r2592 r2594 313 313 /* 314 314 */ 315 public voidclose(String uuid) {315 public int close(String uuid) { 316 316 317 317 SessionContext ctx; … … 319 319 ctx = cache.getSessionContext(uuid); 320 320 } catch (SessionException se) { 321 return ; // EARLY EXIT!321 return -1; // EARLY EXIT! 322 322 } 323 323 … … 340 340 // since ehcache is not tx-friendly. 341 341 cache.removeSession(uuid); 342 return -2; 343 } else { 344 return refCount; 342 345 } 343 346 }
