HHH-18384 Changes after PR comments
This commit is contained in:
parent
3f6d7a5da7
commit
f0a2a4bc11
|
@ -634,7 +634,8 @@ public class EntityBinder {
|
|||
inferredData.getPropertyType(),
|
||||
propertyAccessor
|
||||
);
|
||||
addElementsOfClass( baseClassElements, propContainer, context, 0 );
|
||||
final int idPropertyCount = addElementsOfClass( baseClassElements, propContainer, context, 0 );
|
||||
assert idPropertyCount == 1;
|
||||
//Id properties are on top and there is only one
|
||||
return baseClassElements.get( 0 );
|
||||
}
|
||||
|
|
|
@ -585,8 +585,8 @@ public class PropertyBinder {
|
|||
* @param propertyContainer Metadata about a class and its properties
|
||||
* @param idPropertyCounter number of id properties already present in list of {@link PropertyData} instances
|
||||
*
|
||||
* @return total number of id properties found after iterating the elements of
|
||||
* {@code annotatedClass} using the determined access strategy
|
||||
* @return total number of id properties found after iterating the elements of {@code annotatedClass}
|
||||
* using the determined access strategy (starting from the provided {@code idPropertyCounter})
|
||||
*/
|
||||
static int addElementsOfClass(
|
||||
List<PropertyData> elements,
|
||||
|
@ -602,7 +602,8 @@ public class PropertyBinder {
|
|||
PropertyContainer propertyContainer,
|
||||
MemberDetails property,
|
||||
List<PropertyData> inFlightPropertyDataList,
|
||||
MetadataBuildingContext context, int idPropertyCounter) {
|
||||
MetadataBuildingContext context,
|
||||
int idPropertyCounter) {
|
||||
// see if inFlightPropertyDataList already contains a PropertyData for this name,
|
||||
// and if so, skip it...
|
||||
for ( PropertyData propertyData : inFlightPropertyDataList ) {
|
||||
|
|
Loading…
Reference in New Issue