fix spelling of method name

This commit is contained in:
Gavin King 2024-02-20 13:27:34 +01:00 committed by Marco Belladelli
parent d1db92c220
commit 22b1d606c5
1 changed files with 2 additions and 2 deletions

View File

@ -367,7 +367,7 @@ public class EmbeddableBinder {
if ( baseClassElements != null if ( baseClassElements != null
//useful to avoid breaking pre JPA 2 mappings //useful to avoid breaking pre JPA 2 mappings
&& !hasAnnotationsOnIdClass( annotatedClass ) ) { && !hasAnnotationsOnIdClass( annotatedClass ) ) {
processIdClassElememts( propertyHolder, baseInferredData, classElements, baseClassElements ); processIdClassElements( propertyHolder, baseInferredData, classElements, baseClassElements );
} }
for ( PropertyData propertyAnnotatedElement : classElements ) { for ( PropertyData propertyAnnotatedElement : classElements ) {
processElementAnnotations( processElementAnnotations(
@ -555,7 +555,7 @@ public class EmbeddableBinder {
} }
} }
private static void processIdClassElememts( private static void processIdClassElements(
PropertyHolder propertyHolder, PropertyHolder propertyHolder,
PropertyData baseInferredData, PropertyData baseInferredData,
List<PropertyData> classElements, List<PropertyData> classElements,