HHH-11262 - Fix checkstyle errors

This commit is contained in:
Andrea Boriero 2017-02-02 09:19:41 +00:00
parent f2f6a08853
commit 19e9bfe303
4 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -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;

View File

@ -53,4 +53,4 @@ public class InlineIdsSubSelectValuesListUpdateHandlerImpl
ids
);
}
}
}