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:
parent
f1c336404d
commit
5978fd76a0
|
|
@ -165,7 +165,7 @@ public class SimpleJdbcCall extends AbstractJdbcCall implements SimpleJdbcCallOp
|
||||||
return doExecute(args);
|
return doExecute(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Map<String, Object> execute(Map<String, Object> args) {
|
public Map<String, Object> execute(Map<String, ?> args) {
|
||||||
return doExecute(args);
|
return doExecute(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -164,7 +164,7 @@ public interface SimpleJdbcCallOperations {
|
||||||
* @param args Map containing the parameter values to be used in the call.
|
* @param args Map containing the parameter values to be used in the call.
|
||||||
* @return map of output params.
|
* @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..
|
* Execute the stored procedure and return a map of output params, keyed by name as in parameter declarations..
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue