[MINOR][SQL] remove Redundant semicolons

## What changes were proposed in this pull request?

remove Redundant semicolons in SortMergeJoinExec, thanks.

## How was this patch tested?

N/A

Closes #22695 from heary-cao/RedundantSemicolons.

Authored-by: caoxuewen <cao.xuewen@zte.com.cn>
Signed-off-by: Sean Owen <sean.owen@databricks.com>
This commit is contained in:
caoxuewen 2018-10-11 14:03:41 -07:00 committed by Sean Owen
parent 8115e6b269
commit 65f75db611

View file

@ -494,7 +494,7 @@ case class SortMergeJoinExec(
| $leftRow = null;
| } else {
| $matches.add((UnsafeRow) $rightRow);
| $rightRow = null;;
| $rightRow = null;
| }
| } while ($leftRow != null);
| }