Changeset 391 for trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data
- Timestamp:
- 03/08/12 09:11:15 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java
r375 r391 98 98 if (otherEvent.canEqual(this)) { 99 99 if (type != null) { 100 return t ype.equals(otherEvent.type)101 && t argetEquals(otherEvent.target);100 return targetEquals(otherEvent.target) 101 && type.equals(otherEvent.type); 102 102 } else { 103 return otherEvent.type == null104 && targetEquals(otherEvent.target);103 return targetEquals(otherEvent.target) 104 && otherEvent.type == null; 105 105 } 106 106 } else {
Note: See TracChangeset
for help on using the changeset viewer.