Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere authored and gsmet committed Jun 23, 2023
1 parent 5e74e12 commit 823591f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
@MappedSuperclass
public abstract class AbstractTypedIdEntity<ID extends Serializable> {

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

protected AbstractTypedIdEntity(ID id) {
this.id = id;
Expand Down

0 comments on commit 823591f

Please sign in to comment.