HHH-11262 - Fix checkstyle errors
This commit is contained in:
parent
f2f6a08853
commit
19e9bfe303
|
@ -114,9 +114,7 @@ public class CteValuesListUpdateHandlerImpl
|
|||
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 abstract class AbstractInlineIdsUpdateHandlerImpl
|
|||
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 @@ public class InlineIdsSubSelectValuesListUpdateHandlerImpl
|
|||
ids
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue