Skip to content

Commit 2f40949

Browse files
committed
HHH-8129 - Unify BaseQueryImpl and AbstractQueryImpl hierarchies
1 parent e17819e commit 2f40949

File tree

7 files changed

+715
-896
lines changed

7 files changed

+715
-896
lines changed

hibernate-core/src/main/java/org/hibernate/procedure/ParameterRegistration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public interface ParameterRegistration<T> {
7878
*
7979
* @return The parameter binding
8080
*/
81-
public ParameterBind getParameterBind();
81+
public ParameterBind<T> getBind();
8282

8383
/**
8484
* Bind a value to the parameter. How this value is bound to the underlying JDBC CallableStatement is

hibernate-core/src/main/java/org/hibernate/procedure/internal/AbstractParameterRegistrationImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public void setHibernateType(Type type) {
129129
}
130130

131131
@Override
132-
public ParameterBind getParameterBind() {
132+
public ParameterBind<T> getBind() {
133133
return bind;
134134
}
135135

0 commit comments

Comments
 (0)