Skip to content

Commit 88a5e8a

Browse files
marko-bekhtasebersole
authored andcommitted
HHH-19183 Fix since tag on Dialect#useFollowOnLocking(..)
new method was introduced in 8d0ff71 and other `useFollowOnLocking` removed as part of 9565d49
1 parent 05d9183 commit 88a5e8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hibernate-core/src/main/java/org/hibernate/LockOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ public Boolean getFollowOnLocking() {
465465
* @return {@code this} for method chaining
466466
*
467467
* @see org.hibernate.jpa.HibernateHints#HINT_FOLLOW_ON_LOCKING
468-
* @see org.hibernate.dialect.Dialect#useFollowOnLocking(String, QueryOptions)
468+
* @see org.hibernate.dialect.Dialect#useFollowOnLocking(String, org.hibernate.query.spi.QueryOptions)
469469
*/
470470
public LockOptions setFollowOnLocking(Boolean followOnLocking) {
471471
if ( immutable ) {

hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4156,7 +4156,7 @@ public boolean isEmptyStringTreatedAsNull() {
41564156
* {@code false} (the default) indicates that locking
41574157
* should be applied to the main SQL statement.
41584158
*
4159-
* @since 5.2
4159+
* @since 6.0
41604160
*/
41614161
public boolean useFollowOnLocking(String sql, QueryOptions queryOptions) {
41624162
return false;

0 commit comments

Comments
 (0)