Skip to content

Commit 92a59e8

Browse files
committed
add missing @SInCE
1 parent d6a272b commit 92a59e8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private Hibernate() {
118118
throw new UnsupportedOperationException();
119119
}
120120

121-
private static final LobHelperImpl lobHelper = new LobHelperImpl();
121+
private static final LobHelper lobHelper = new LobHelperImpl();
122122

123123
/**
124124
* Force initialization of a proxy or persistent collection. In the case of a
@@ -601,6 +601,8 @@ else if (collectionClass == Collection.class) {
601601
* and {@link java.sql.Clob}.
602602
*
603603
* @return an instance of {@link LobHelper}
604+
*
605+
* @since 7.1
604606
*/
605607
public static LobHelper getLobHelper() {
606608
return lobHelper;

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,8 +1326,7 @@ public interface Session extends SharedSessionContract, EntityManager {
13261326
*
13271327
* @return an instance of {@link LobHelper}
13281328
*
1329-
* @deprecated This method will be removed.
1330-
* use {@link Hibernate#getLobHelper()} instead
1329+
* @deprecated Use {@link Hibernate#getLobHelper()} instead.
13311330
*/
13321331
@Deprecated(since="7.0", forRemoval = true)
13331332
LobHelper getLobHelper();

0 commit comments

Comments
 (0)