johnzon-core/src/main/java/org/apache/johnzon/core/Types.java [124:132]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public boolean equals(final Object obj) {
            if (this == obj) {
                return true;
            } else if (obj instanceof ParameterizedType) {
                final ParameterizedType that = (ParameterizedType) obj;
                final Type thatRawType = that.getRawType();
                return that.getOwnerType() == null
                        && (rawType == null ? thatRawType == null : rawType.equals(thatRawType))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



johnzon-mapper/src/main/java/org/apache/johnzon/mapper/reflection/JohnzonParameterizedType.java [75:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public boolean equals(final Object obj) {
        if (this == obj) {
            return true;
        } else if (obj instanceof ParameterizedType) {
            final ParameterizedType that = (ParameterizedType) obj;
            final Type thatRawType = that.getRawType();
            return that.getOwnerType() == null
                    && (rawType == null ? thatRawType == null : rawType.equals(thatRawType))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



