Changeset 5312 for branches/release-0.13.5-before-modinc/pfixcore/src/de/schlund/pfixcore/workflow/context/SessionContextImpl.java
- Timestamp:
- 08/23/10 18:07:41 (21 months ago)
- Location:
- branches/release-0.13.5-before-modinc/pfixcore
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
src/de/schlund/pfixcore/workflow/context/SessionContextImpl.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-0.13.5-before-modinc/pfixcore
- Property svn:mergeinfo changed
/branches/release-0.13.x/pfixcore merged: 4749
- Property svn:mergeinfo changed
-
branches/release-0.13.5-before-modinc/pfixcore/src/de/schlund/pfixcore/workflow/context/SessionContextImpl.java
r4202 r5312 61 61 // Send event to registered listeners 62 62 try { 63 SessionStatusListener[] currentListeners; 63 64 synchronized (this) { 64 for (SessionStatusListener l : sessionListeners) { 65 l.sessionStatusChanged(new SessionStatusEvent(SessionStatusEvent.Type.SESSION_DESTROYED)); 66 } 65 currentListeners = new SessionStatusListener[sessionListeners.size()]; 66 sessionListeners.toArray(currentListeners); 67 } 68 for (SessionStatusListener l : currentListeners) { 69 l.sessionStatusChanged(new SessionStatusEvent(SessionStatusEvent.Type.SESSION_DESTROYED)); 67 70 } 68 71 } catch(Throwable t) {
