in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/activation/WhiskActivationWithLogs.java [71:81]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
WhiskActivationWithLogs that = (WhiskActivationWithLogs) o;
if (subject != null ? !subject.equals(that.subject) : that.subject != null) return false;
if (logs != null ? !logs.equals(that.logs) : that.logs != null) return false;
return response != null ? response.equals(that.response) : that.response == null;
}