in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/trigger/SimplifiedWhiskRule.java [50:58]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SimplifiedWhiskRule that = (SimplifiedWhiskRule) o;
if (action != null ? !action.equals(that.action) : that.action != null) return false;
return status != null ? status.equals(that.status) : that.status == null;
}