提交 8f7d9656 authored 作者: noelgrandin's avatar noelgrandin

remove unused parameter

上级 984704e5
......@@ -149,10 +149,9 @@ public class IndexCondition {
* Get the current result of the expression. The rows may not be of the same
* type, therefore the rows may not be unique.
*
* @param session the session
* @return the result
*/
public ResultInterface getCurrentResult(Session session) {
public ResultInterface getCurrentResult() {
return expressionQuery.query(0);
}
......
......@@ -97,7 +97,7 @@ public class IndexCursor implements Cursor {
if (start == null && end == null) {
if (canUseIndexForIn(column)) {
this.inColumn = column;
inResult = condition.getCurrentResult(s);
inResult = condition.getCurrentResult();
}
}
} else {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论