Skip to content

Commit 268dda7

Browse files
authored
Merge pull request quarkusio#34465 from yrodiere/revert-HHH-16832-workaround
Revert "Work around https://hibernate.atlassian.net/browse/HHH-16832"
2 parents 61de472 + a74d53b commit 268dda7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

integration-tests/spring-data-jpa/src/main/java/io/quarkus/it/spring/data/jpa/AbstractTypedIdEntity.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@
99
@MappedSuperclass
1010
public abstract class AbstractTypedIdEntity<ID extends Serializable> {
1111

12-
// Using package visibility instead of private visibility
13-
// in order to work around https://hibernate.atlassian.net/browse/HHH-16832
1412
@EmbeddedId
15-
ID id;
13+
private ID id;
1614

1715
protected AbstractTypedIdEntity(ID id) {
1816
this.id = id;

0 commit comments

Comments
 (0)