Cosmetic
Project: http://git-wip-us.apache.org/repos/asf/calcite/repo Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/7a985750 Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/7a985750 Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/7a985750 Branch: refs/heads/master Commit: 7a9857504af654d518004a07f05798ebdfd253c1 Parents: 4d0e83e Author: Julian Hyde <[email protected]> Authored: Mon Sep 11 13:32:42 2017 -0700 Committer: Julian Hyde <[email protected]> Committed: Mon Oct 2 11:13:41 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/calcite/rel/logical/LogicalTableScan.java | 3 ++- .../main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java | 5 +++-- .../src/main/java/org/apache/calcite/util/ImmutableBitSet.java | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/calcite/blob/7a985750/core/src/main/java/org/apache/calcite/rel/logical/LogicalTableScan.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/calcite/rel/logical/LogicalTableScan.java b/core/src/main/java/org/apache/calcite/rel/logical/LogicalTableScan.java index 788e5a2..abad97d 100644 --- a/core/src/main/java/org/apache/calcite/rel/logical/LogicalTableScan.java +++ b/core/src/main/java/org/apache/calcite/rel/logical/LogicalTableScan.java @@ -90,7 +90,8 @@ public final class LogicalTableScan extends TableScan { } /** Creates a LogicalTableScan. - * @param cluster Cluster + * + * @param cluster Cluster * @param relOptTable Table */ public static LogicalTableScan create(RelOptCluster cluster, http://git-wip-us.apache.org/repos/asf/calcite/blob/7a985750/core/src/main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java b/core/src/main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java index 20a01da..a057697 100644 --- a/core/src/main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java +++ b/core/src/main/java/org/apache/calcite/sql/SqlJdbcFunctionCall.java @@ -595,8 +595,9 @@ public class SqlJdbcFunctionCall extends SqlFunction { * <p>The reordering is specified by an int array where the value of * element at position <code>i</code> indicates to which element in a * new SqlNode[] array the operand goes. - * @param operator Operator - * @param order Order + * + * @param operator Operator + * @param order Order */ PermutingMakeCall(SqlOperator operator, int[] order) { super(operator); http://git-wip-us.apache.org/repos/asf/calcite/blob/7a985750/core/src/main/java/org/apache/calcite/util/ImmutableBitSet.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/calcite/util/ImmutableBitSet.java b/core/src/main/java/org/apache/calcite/util/ImmutableBitSet.java index c03d5c4..568fe3e 100644 --- a/core/src/main/java/org/apache/calcite/util/ImmutableBitSet.java +++ b/core/src/main/java/org/apache/calcite/util/ImmutableBitSet.java @@ -698,7 +698,7 @@ public class ImmutableBitSet /** Returns a bit set with all the bits in this set that are not in * another. * - * @see BitSet#andNot(java.util.BitSet) */ + * @see BitSet#andNot(java.util.BitSet) */ public ImmutableBitSet except(ImmutableBitSet that) { final Builder builder = rebuild(); builder.removeAll(that); @@ -706,9 +706,9 @@ public class ImmutableBitSet } /** Returns a bit set with all the bits set in both this set and in - * another. + * another. * - * @see BitSet#and */ + * @see BitSet#and */ public ImmutableBitSet intersect(ImmutableBitSet that) { final Builder builder = rebuild(); builder.intersect(that);
