in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/pkg/WhiskPackageWithActions.java [73:83]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
WhiskPackageWithActions that = (WhiskPackageWithActions) o;
if (parameters != null ? !parameters.equals(that.parameters) : that.parameters != null) return false;
if (actions != null ? !actions.equals(that.actions) : that.actions != null) return false;
return feeds != null ? feeds.equals(that.feeds) : that.feeds == null;
}