We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 61de472 + a74d53b commit 268dda7Copy full SHA for 268dda7
integration-tests/spring-data-jpa/src/main/java/io/quarkus/it/spring/data/jpa/AbstractTypedIdEntity.java
@@ -9,10 +9,8 @@
9
@MappedSuperclass
10
public abstract class AbstractTypedIdEntity<ID extends Serializable> {
11
12
- // Using package visibility instead of private visibility
13
- // in order to work around https://hibernate.atlassian.net/browse/HHH-16832
14
@EmbeddedId
15
- ID id;
+ private ID id;
16
17
protected AbstractTypedIdEntity(ID id) {
18
this.id = id;
0 commit comments