mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 14:09:25 +00:00
relaxed Map<String, Object> to Map<String, ?> for method parameter
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2323 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
+1
-1
@@ -165,7 +165,7 @@ public class SimpleJdbcCall extends AbstractJdbcCall implements SimpleJdbcCallOp
|
||||
return doExecute(args);
|
||||
}
|
||||
|
||||
public Map<String, Object> execute(Map<String, Object> args) {
|
||||
public Map<String, Object> execute(Map<String, ?> args) {
|
||||
return doExecute(args);
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -164,7 +164,7 @@ public interface SimpleJdbcCallOperations {
|
||||
* @param args Map containing the parameter values to be used in the call.
|
||||
* @return map of output params.
|
||||
*/
|
||||
Map<String, Object> execute(Map<String, Object> args);
|
||||
Map<String, Object> execute(Map<String, ?> args);
|
||||
|
||||
/**
|
||||
* Execute the stored procedure and return a map of output params, keyed by name as in parameter declarations..
|
||||
|
||||
Reference in New Issue
Block a user