remove deprecated members of FetchMode

This commit is contained in:
Gavin King 2022-01-23 19:36:43 +01:00
parent 05349f6a9b
commit dcfb6cdb19
1 changed files with 1 additions and 16 deletions

View File

@ -40,21 +40,6 @@ public enum FetchMode {
* @see org.hibernate.annotations.FetchMode#SELECT
* @see org.hibernate.annotations.FetchMode#SUBSELECT
*/
SELECT;
SELECT
/**
* Fetch lazily, using a separate select.
*
* @deprecated use {@link #SELECT}
*/
@Deprecated
public static final FetchMode LAZY = SELECT;
/**
* Fetch eagerly, using an outer join.
*
* @deprecated use {@link #JOIN}
*/
@Deprecated
public static final FetchMode EAGER = JOIN;
}