Skip to content

Commit

Permalink
remove deprecated FlushModeType
Browse files Browse the repository at this point in the history
that was already removed from FlushMode
  • Loading branch information
gavinking committed Mar 25, 2021
1 parent bbf4619 commit 4e22929
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Expand Up @@ -24,11 +24,6 @@ public enum FlushModeType {
* Corresponds to {@link org.hibernate.FlushMode#COMMIT}.
*/
COMMIT,
/**
* @deprecated use MANUAL, will be removed in a subsequent release
*/
@Deprecated
NEVER,
/**
* Corresponds to {@link org.hibernate.FlushMode#MANUAL}.
*/
Expand Down
Expand Up @@ -260,9 +260,6 @@ private static FlushMode getFlushMode(FlushModeType flushModeType) {
case COMMIT:
flushMode = FlushMode.COMMIT;
break;
case NEVER:
flushMode = FlushMode.MANUAL;
break;
case MANUAL:
flushMode = FlushMode.MANUAL;
break;
Expand Down

0 comments on commit 4e22929

Please sign in to comment.