Added missing final keywords
This commit is contained in:
parent
87ce687450
commit
23934e3e2a
@ -211,7 +211,7 @@ implements
|
||||
}
|
||||
}
|
||||
|
||||
private void toSQLRows(RenderContext context, Integer rows) {
|
||||
private final void toSQLRows(RenderContext context, Integer rows) {
|
||||
if (rows == Integer.MIN_VALUE) {
|
||||
context.sql("unbounded preceding");
|
||||
}
|
||||
@ -273,7 +273,7 @@ implements
|
||||
}
|
||||
|
||||
@Override
|
||||
public WindowFunction<T> partitionByOne() {
|
||||
public final WindowFunction<T> partitionByOne() {
|
||||
partitionByOne = true;
|
||||
partitionBy.add(create().one());
|
||||
return this;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user