public boolean equals()

in src/main/java/org/apache/openwhisk/intellij/explorer/editor/model/ComboBoxEntityEntry.java [59:64]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ComboBoxEntityEntry that = (ComboBoxEntityEntry) o;
        return Objects.equals(name, that.name) && type == that.type;
    }