提交 7d2b3f2e 编写于 作者: T Thomas Risberg

relaxed Map<String, Object> to Map<String, ?> for method parameter

上级 36e00054
......@@ -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);
}
......
......@@ -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..
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册