public boolean equals()

in src/main/java/com/amazonaws/services/dynamodbv2/util/ImmutableKey.java [41:56]


    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        ImmutableKey other = (ImmutableKey) obj;
        if (key == null) {
            if (other.key != null)
                return false;
        }
        else if (!key.equals(other.key))
            return false;
        return true;
    }