提交 8db73a20 authored 作者: Thomas Mueller's avatar Thomas Mueller

Remove unneeded javadocs

上级 f7ae15f8
......@@ -210,11 +210,8 @@ public abstract class Query extends Prepared {
distinct = b;
}
/**
* Exposed for external TableEngine implementations.
*/
public boolean isDistinct() {
return this.distinct;
return distinct;
}
/**
......@@ -486,22 +483,16 @@ public abstract class Query extends Prepared {
this.offsetExpr = offset;
}
/**
* Exposed for external TableEngine implementations.
*/
public Expression getOffset() {
return this.offsetExpr;
return offsetExpr;
}
public void setLimit(Expression limit) {
this.limitExpr = limit;
}
/**
* Exposed for external TableEngine implementations.
*/
public Expression getLimit() {
return this.limitExpr;
return limitExpr;
}
/**
......
......@@ -127,11 +127,8 @@ public class Select extends Query {
this.group = group;
}
/**
* Exposed for external TableEngine implementations.
*/
public ArrayList<Expression> getGroupBy() {
return this.group;
return group;
}
public HashMap<Expression, Object> getCurrentGroup() {
......@@ -1093,11 +1090,8 @@ public class Select extends Query {
this.having = having;
}
/**
* Exposed for external TableEngine implementations.
*/
public Expression getHaving() {
return this.having;
return having;
}
public int getColumnCount() {
......
......@@ -298,9 +298,6 @@ public class IndexCondition {
}
}
/**
* The comparison type, see constants in {@link Comparison}
*/
public int getCompareType() {
return compareType;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论