Skip to content

Commit

Permalink
HHH-18139 fix broken Envers test
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin King <[email protected]>
  • Loading branch information
gavinking authored and sebersole committed Jul 24, 2024
1 parent 6ccc73d commit e570640
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import java.util.List;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.OneToMany;
import jakarta.persistence.Table;
Expand All @@ -24,7 +23,6 @@
@Table(name = "JoinEmbIdRefEd")
public class JoinEmbIdNamingRefEdEntity {
@Id
@GeneratedValue
private EmbIdNaming id;

@Audited
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
package org.hibernate.orm.test.envers.integration.naming.ids;

import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.JoinColumns;
Expand All @@ -25,7 +24,6 @@
@Table(name = "JoinEmbIdRefIng")
public class JoinEmbIdNamingRefIngEntity {
@Id
@GeneratedValue
private EmbIdNaming id;

@Audited
Expand Down

0 comments on commit e570640

Please sign in to comment.