Changeset 28 for branches/multithread/src/planet/generic/commonapi/behaviours/BehavioursPoolImpl.java
- Timestamp:
- 10/02/07 12:49:26 (1 year ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/multithread/src/planet/generic/commonapi/behaviours/BehavioursPoolImpl.java
r2 r28 98 98 * Auxiliar Vector to use in the onMessage() method. 99 99 */ 100 protected Vector behaviours = null;100 // protected Vector behaviours = null; 101 101 /** 102 102 * Auxiliar Iterator to use in the onMessage() method. … … 357 357 whichQueue = whichQueue * BEH_MAPPINGS / 2 + (node.isLocalMessage(msg)? TRAFFIC_LOCAL: TRAFFIC_REMOTE); 358 358 359 behaviours = beh[whichQueue][msg.getType() * Properties.behavioursNumberOfModes + msg.getMode()];359 Vector behaviours = beh[whichQueue][msg.getType() * Properties.behavioursNumberOfModes + msg.getMode()]; 360 360 361 361 if (behaviours.isEmpty()) throw new NoSuchBehaviourException();
