in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/trigger/SimplifiedEntityMetaData.java [57:65]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SimplifiedEntityMetaData that = (SimplifiedEntityMetaData) o;
if (path != null ? !path.equals(that.path) : that.path != null) return false;
return name != null ? name.equals(that.name) : that.name == null;
}