Update to spring-javaformat-checkstyle 0.0.7

Remove unnecessary lambdas to fix updated checkstyle
This commit is contained in:
Rob Winch
2019-03-22 00:35:32 -05:00
parent 62ea7382d7
commit bff3d2f2be
5 changed files with 11 additions and 13 deletions

View File

@@ -314,9 +314,7 @@ public abstract class AbstractJdbcCall {
this.callMetaDataContext.initializeMetaData(dataSource);
// Iterate over the declared RowMappers and register the corresponding SqlParameter
this.declaredRowMappers.forEach((key, value) -> {
this.declaredParameters.add(this.callMetaDataContext.createReturnResultSetParameter(key, value));
});
this.declaredRowMappers.forEach((key, value) -> this.declaredParameters.add(this.callMetaDataContext.createReturnResultSetParameter(key, value)));
this.callMetaDataContext.processParameters(this.declaredParameters);
this.callString = this.callMetaDataContext.createCallString();