Skip to content

Commit 33e94ab

Browse files
committed
fix broken jdoc
1 parent 0ed81d1 commit 33e94ab

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

hibernate-core/src/main/java/org/hibernate/jpa/HibernateHints.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
*/
55
package org.hibernate.jpa;
66

7-
import org.hibernate.type.BindableType;
8-
97
/**
108
* List of Hibernate-specific (extension) hints available to query,
119
* load, and lock scenarios.
@@ -167,15 +165,15 @@ public interface HibernateHints {
167165

168166
/**
169167
* The {@linkplain org.hibernate.type.SqlTypes JDBC type code},
170-
* {@linkplain BindableType type}, or
168+
* {@linkplain jakarta.persistence.metamodel.Type type}, or
171169
* {@link Class} of the value returned by a SQL function called
172170
* via {@link org.hibernate.procedure.ProcedureCall} or
173171
* {@link jakarta.persistence.StoredProcedureQuery}. Has the side
174172
* effect of causing the call to be treated as a function call
175173
* rather than a call to a stored procedure.
176174
*
177175
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(int)
178-
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(BindableType)
176+
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(jakarta.persistence.metamodel.Type)
179177
* @see org.hibernate.procedure.ProcedureCall#markAsFunctionCall(Class)
180178
*/
181179
String HINT_CALLABLE_FUNCTION_RETURN_TYPE = "hibernate.procedure.function_return_jdbc_type_code";

0 commit comments

Comments
 (0)