cdi-extender/src/main/java/org/apache/aries/cdi/container/internal/model/ExtendedConfigurationTemplateDTO.java [72:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			return false;
		}
		if (declaringClass == null) {
			if (other.declaringClass != null) {
				return false;
			}
		} else if (!declaringClass.equals(other.declaringClass)) {
			return false;
		}
		if (injectionPointType == null) {
			if (other.injectionPointType != null) {
				return false;
			}
		} else if (!injectionPointType.equals(other.injectionPointType)) {
			return false;
		}
		if (maximumCardinality != other.maximumCardinality) {
			return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cdi-extender/src/main/java/org/apache/aries/cdi/container/internal/model/ExtendedReferenceTemplateDTO.java [74:91]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			return false;
		}
		if (declaringClass == null) {
			if (other.declaringClass != null) {
				return false;
			}
		} else if (!declaringClass.equals(other.declaringClass)) {
			return false;
		}
		if (injectionPointType == null) {
			if (other.injectionPointType != null) {
				return false;
			}
		} else if (!injectionPointType.equals(other.injectionPointType)) {
			return false;
		}
		if (maximumCardinality != other.maximumCardinality) {
			return false;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



