Skip to content

Commit f24f35d

Browse files
committed
HHH-19542: Clean-up
1 parent 913e50b commit f24f35d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

hibernate-core/src/main/java/org/hibernate/boot/model/internal/EmbeddableBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ static Component fillEmbeddable(
455455
if ( LOG.isDebugEnabled() ) {
456456
LOG.debug( "Binding component with path: " + subpath );
457457
}
458-
final ComponentPropertyHolder subholder = buildPropertyHolder(
458+
final PropertyHolder subholder = buildPropertyHolder(
459459
component,
460460
subpath,
461461
inferredData,

hibernate-core/src/main/java/org/hibernate/boot/model/internal/PropertyHolderBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static PropertyHolder buildPropertyHolder(
4747
*
4848
* @return PropertyHolder
4949
*/
50-
public static ComponentPropertyHolder buildPropertyHolder(
50+
public static PropertyHolder buildPropertyHolder(
5151
Component component,
5252
String path,
5353
PropertyData inferredData,

hibernate-envers/src/test/java/org/hibernate/orm/test/envers/entities/components/Component3.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import jakarta.persistence.AttributeOverrides;
99
import jakarta.persistence.Column;
1010
import jakarta.persistence.Embeddable;
11+
1112
import org.hibernate.envers.Audited;
1213
import org.hibernate.envers.NotAudited;
1314

0 commit comments

Comments
 (0)