File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
hibernate-core/src/main/java/org/hibernate/boot/model/internal
hibernate-envers/src/test/java/org/hibernate/orm/test/envers/entities/components Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ static Component fillEmbeddable(
455
455
if ( LOG .isDebugEnabled () ) {
456
456
LOG .debug ( "Binding component with path: " + subpath );
457
457
}
458
- final ComponentPropertyHolder subholder = buildPropertyHolder (
458
+ final PropertyHolder subholder = buildPropertyHolder (
459
459
component ,
460
460
subpath ,
461
461
inferredData ,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public static PropertyHolder buildPropertyHolder(
47
47
*
48
48
* @return PropertyHolder
49
49
*/
50
- public static ComponentPropertyHolder buildPropertyHolder (
50
+ public static PropertyHolder buildPropertyHolder (
51
51
Component component ,
52
52
String path ,
53
53
PropertyData inferredData ,
Original file line number Diff line number Diff line change 8
8
import jakarta .persistence .AttributeOverrides ;
9
9
import jakarta .persistence .Column ;
10
10
import jakarta .persistence .Embeddable ;
11
+
11
12
import org .hibernate .envers .Audited ;
12
13
import org .hibernate .envers .NotAudited ;
13
14
You can’t perform that action at this time.
0 commit comments