mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-25 21:04:51 +00:00
HHH-11262 - Fix checkstyle errors
This commit is contained in:
parent
f2f6a08853
commit
19e9bfe303
@ -114,9 +114,7 @@ public int execute(
|
||||
if ( assignmentParameterSpecifications[i] != null ) {
|
||||
for ( int x = 0; x < assignmentParameterSpecifications[i].length; x++ ) {
|
||||
position += assignmentParameterSpecifications[i][x]
|
||||
.bind( ps, queryParameters, session,
|
||||
position
|
||||
);
|
||||
.bind( ps, queryParameters, session, position );
|
||||
}
|
||||
}
|
||||
session
|
||||
|
@ -101,9 +101,7 @@ public int execute(
|
||||
if ( assignmentParameterSpecifications[i] != null ) {
|
||||
for ( int x = 0; x < assignmentParameterSpecifications[i].length; x++ ) {
|
||||
position += assignmentParameterSpecifications[i][x]
|
||||
.bind( ps, queryParameters, session,
|
||||
position
|
||||
);
|
||||
.bind( ps, queryParameters, session, position );
|
||||
}
|
||||
}
|
||||
session
|
||||
|
@ -1,3 +1,9 @@
|
||||
/*
|
||||
* Hibernate, Relational Persistence for Idiomatic Java
|
||||
*
|
||||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
||||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
*/
|
||||
package org.hibernate.hql.spi.id.inline;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -53,4 +53,4 @@ protected IdsClauseBuilder newIdsClauseBuilder(List<Object[]> ids) {
|
||||
ids
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user