Skip to content

Commit

Permalink
[CALCITE-4314] Use exact parameter names in JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Oct 6, 2020
1 parent 04f8a07 commit 0cdb485
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4320,8 +4320,8 @@ private boolean advance() {


/**
* Clears {@code lefts} list, adds {@code left} into it, and advance left enumerator,
* adding all items with the same key to {@code lefts} list too, until left enumerator
* Clears {@code left} list, adds {@code left} into it, and advance left enumerator,
* adding all items with the same key to {@code left} list too, until left enumerator
* is over or a different key is found.
* @return {@code true} if there are still elements to be processed on the left enumerator,
* {@code false} otherwise (left enumerator is over or null key is found).
Expand Down Expand Up @@ -4352,8 +4352,8 @@ private boolean advanceLeft(TSource left, TKey leftKey) {
}

/**
* Clears {@code rights} list, adds {@code right} into it, and advance right enumerator,
* adding all items with the same key to {@code rights} list too, until right enumerator
* Clears {@code right} list, adds {@code right} into it, and advance right enumerator,
* adding all items with the same key to {@code right} list too, until right enumerator
* is over or a different key is found.
* @return {@code true} if there are still elements to be processed on the right enumerator,
* {@code false} otherwise (right enumerator is over or null key is found).
Expand Down

0 comments on commit 0cdb485

Please sign in to comment.