Skip to content

Commit

Permalink
HHH-18712 Warning about attempts to update an immutable entity for no…
Browse files Browse the repository at this point in the history
…rmal (not immutable) entity
  • Loading branch information
dreab8 committed Oct 17, 2024
1 parent 8b5bc44 commit 93af5f2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,9 @@ public String getMappedSuperclass() {
public Type getDiscriminatorType() {
return factory.getTypeConfiguration().getBasicTypeForJavaType(String.class);
}

@Override
public boolean isMutable() {
return true;
}
}

0 comments on commit 93af5f2

Please sign in to comment.