remove deprecated CascadeType.EVICT

This commit is contained in:
Gavin King 2021-02-25 11:04:17 +01:00
parent c89319f3e9
commit 50363dcc2c
2 changed files with 0 additions and 9 deletions

View File

@ -63,14 +63,6 @@ public enum CascadeType {
*/
LOCK,
/**
* JPA originally planned on calling DETACH EVICT.
*
* @deprecated use {@link javax.persistence.CascadeType#DETACH}
*/
@Deprecated
EVICT,
/**
* Corresponds to {@link javax.persistence.CascadeType#DETACH}.
*/

View File

@ -3488,7 +3488,6 @@ public final class AnnotationBinder {
case REPLICATE:
cascade.append( "," ).append( "replicate" );
break;
case EVICT:
case DETACH:
cascade.append( "," ).append( "evict" );
break;