Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* The default is {@link #ORDERED}.
*
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
*
* @since 7.2
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The default is {@link #REPLACE}.
*
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
*
* @since 7.2
*/
Expand Down
10 changes: 5 additions & 5 deletions hibernate-core/src/main/java/org/hibernate/SessionCheckMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
/**
* Indicates whether the persistence context should be checked for entities
* matching the identifiers to be loaded - <ul>
* <li>Entities which are in a managed state are not re-loaded from the database.
* those identifiers are removed from the SQL restriction sent to the database.
* <li>Entities which are in a managed state are not reloaded from the database.
* Those identifiers are removed from the SQL restriction sent to the database.
* <li>Entities which are in a removed state are {@linkplain RemovalsMode#REPLACE excluded}
* from the result by default, but can be {@linkplain RemovalsMode#INCLUDE included} if desired.
* </ul>
* <p/>
* The default is {@link #DISABLED}
* The default is {@link #DISABLED}.
*
* @see org.hibernate.Session#findMultiple(Class, List , FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
*
* @since 7.2
*/
Expand Down