public boolean equals()

in rest-util/src/main/java/org/apache/archiva/components/rest/model/PropertyEntry.java [66:75]


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

        PropertyEntry that = (PropertyEntry) o;

        if ( !Objects.equals( key, that.key ) ) return false;
        return Objects.equals( value, that.value );
    }