- Timestamp:
- 06/03/14 15:10:51 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/branches/coolemall/src/gridsim/dcworms/filter/ExecTaskFilter.java
r493 r1361 23 23 boolean result = false; 24 24 try { 25 26 if (tag_ == ev.get_tag()) { 25 if (tag_ == -1){ 27 26 Object obj = ev.get_data(); 28 27 … … 36 35 } 37 36 } 37 else { 38 if (tag_ == ev.get_tag()) { 39 Object obj = ev.get_data(); 40 41 if (obj instanceof Executable) { 42 43 Executable exec = (Executable) obj; 44 45 if (exec.getUniqueId() == eventID_) { 46 result = true; 47 } 48 } 49 } 50 } 38 51 } catch (Exception e) { 39 52 result = false;
Note: See TracChangeset
for help on using the changeset viewer.