summaryrefslogtreecommitdiff
path: root/spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2016-04-03 01:07:52 +0200
committerEmmanuel Bourg <ebourg@apache.org>2016-04-03 01:07:52 +0200
commit5575b60c30c5a0c308c4ba3a2db93956d8c1746c (patch)
tree14eb3edc5dfb9f5bd0ce5cb99adac0f51573be94 /spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java
parentda46d30e80e4c59a41cf52055d06faa1dbb7e383 (diff)
Imported Upstream version 4.1.9
Diffstat (limited to 'spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java')
-rw-r--r--spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java b/spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java
index e8d9e19c..0008db79 100644
--- a/spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java
+++ b/spring-jdbc/src/test/java/org/springframework/jdbc/core/JdbcTemplateTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2013 the original author or authors.
+ * Copyright 2002-2014 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.
@@ -31,13 +31,13 @@ import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
-
import javax.sql.DataSource;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
+
import org.springframework.dao.DataAccessException;
import org.springframework.dao.InvalidDataAccessApiUsageException;
import org.springframework.jdbc.BadSqlGrammarException;
@@ -1289,7 +1289,7 @@ public class JdbcTemplateTests {
List<SqlParameter> params = new ArrayList<SqlParameter>();
params.add(new SqlOutParameter("a", 12));
- Map out = this.template.call(new CallableStatementCreator() {
+ Map<String, Object> out = this.template.call(new CallableStatementCreator() {
@Override
public CallableStatement createCallableStatement(Connection conn)
throws SQLException {