Upgrade to spring-javaformat-checkstyle version 0.0.7

See gh-22634
This commit is contained in:
Sam Brannen
2019-03-23 15:38:44 +01:00
parent e98fd762ba
commit af99e868c4
5 changed files with 12 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -314,9 +314,8 @@ 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();