public boolean equals()

in src/main/java/org/apache/openwhisk/intellij/common/whisk/model/wskdeploy/WskDeployManifest.java [60:69]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        WskDeployManifest manifest = (WskDeployManifest) o;

        if (path != null ? !path.equals(manifest.path) : manifest.path != null) return false;
        if (fullPath != null ? !fullPath.equals(manifest.fullPath) : manifest.fullPath != null) return false;
        return name != null ? name.equals(manifest.name) : manifest.name == null;
    }