in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/action/CompactWhiskAction.java [119:128]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CompactWhiskAction that = (CompactWhiskAction) o;
if (name != null ? !name.equals(that.name) : that.name != null) return false;
if (version != null ? !version.equals(that.version) : that.version != null) return false;
return annotations != null ? annotations.equals(that.annotations) : that.annotations == null;
}