DATACMNS-188 - Removed obsolete method from AbstractMappingContext.

This commit is contained in:
Oliver Gierke
2012-07-09 09:17:16 +02:00
parent c8184419d9
commit 75dd6a5fc3

View File

@@ -308,16 +308,6 @@ public abstract class AbstractMappingContext<E extends MutablePersistentEntity<?
}
}
private TypeInformation<?> getComponentTypeRecursively(TypeInformation<?> typeInformation) {
TypeInformation<?> componentType = typeInformation.getComponentType();
if (componentType == null) {
return null;
}
return componentType.isCollectionLike() ? getComponentTypeRecursively(componentType) : componentType;
}
/**
* Creates the concrete {@link PersistentEntity} instance.
*