Changeset 773 for trunk/quest-plugin-php/src/main/java
- Timestamp:
- 09/06/12 08:41:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-php/src/main/java/de/ugoe/cs/quest/plugin/php/eventcore/PHPEventType.java
r681 r773 99 99 if (obj instanceof PHPEventType) { 100 100 PHPEventType other = (PHPEventType) obj; 101 return ((path == null && other.path == null) || path.equals(other.path)) &&102 ((postVars == null && other.postVars == null) || postVars.equals(other.postVars)) &&103 ((getVars == null && other.getVars == null) || getVars.equals(other.getVars));101 return ((path == other.path) || (path != null && path.equals(other.path))) && 102 ((postVars == other.postVars) || (postVars!=null && postVars.equals(other.postVars))) && 103 ((getVars == other.getVars) || (getVars!=null && getVars.equals(other.getVars))); 104 104 } 105 105 return false;
Note: See TracChangeset
for help on using the changeset viewer.