This is an automated email from the ASF dual-hosted git repository.

domgarguilo pushed a commit to branch 1.10
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/1.10 by this push:
     new 9938d99127 Fix errors in Range javadoc (#3343)
9938d99127 is described below

commit 9938d9912748bc1c0ad357ae4ada2c37103ceaeb
Author: Dom G <[email protected]>
AuthorDate: Wed Apr 26 10:23:34 2023 -0400

    Fix errors in Range javadoc (#3343)
---
 .../java/org/apache/accumulo/core/data/Range.java  | 24 +++++++++++-----------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/data/Range.java 
b/core/src/main/java/org/apache/accumulo/core/data/Range.java
index f310b1f465..11daf627a6 100644
--- a/core/src/main/java/org/apache/accumulo/core/data/Range.java
+++ b/core/src/main/java/org/apache/accumulo/core/data/Range.java
@@ -122,7 +122,7 @@ public class Range implements WritableComparable<Range> {
    * @param endRow
    *          ending row; set to null for positive infinity
    * @param endRowInclusive
-   *          true to include start row, false to skip
+   *          true to include end row, false to skip
    * @throws IllegalArgumentException
    *           if end row is before start row
    */
@@ -147,7 +147,7 @@ public class Range implements WritableComparable<Range> {
    * @param endRow
    *          ending row; set to null for positive infinity
    * @param endRowInclusive
-   *          true to include start row, false to skip
+   *          true to include end row, false to skip
    * @throws IllegalArgumentException
    *           if end row is before start row
    */
@@ -167,7 +167,7 @@ public class Range implements WritableComparable<Range> {
    * @param endKey
    *          ending key; set to null for positive infinity
    * @param endKeyInclusive
-   *          true to include start key, false to skip
+   *          true to include end key, false to skip
    * @throws IllegalArgumentException
    *           if end key is before start key
    */
@@ -301,7 +301,7 @@ public class Range implements WritableComparable<Range> {
   }
 
   /**
-   * Implements logic of {@code #beforeStartKey(Key)}, but in a private 
method, so that it can be
+   * Implements logic of {@link #beforeStartKey(Key)}, but in a private 
method, so that it can be
    * safely used by constructors if a subclass overrides that {@link 
#beforeStartKey(Key)}
    */
   private boolean beforeStartKeyImpl(Key key) {
@@ -780,7 +780,7 @@ public class Range implements WritableComparable<Range> {
    * Creates a range that covers an exact row and column family.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    */
@@ -793,7 +793,7 @@ public class Range implements WritableComparable<Range> {
    * Creates a range that covers an exact row, column family, and column 
qualifier.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq
@@ -809,7 +809,7 @@ public class Range implements WritableComparable<Range> {
    * visibility.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq
@@ -828,7 +828,7 @@ public class Range implements WritableComparable<Range> {
    * and timestamp.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq
@@ -950,7 +950,7 @@ public class Range implements WritableComparable<Range> {
    * Creates a range that covers an exact row and column family.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @see #exact(Text, Text)
@@ -963,7 +963,7 @@ public class Range implements WritableComparable<Range> {
    * Creates a range that covers an exact row, column family, and column 
qualifier.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq
@@ -979,7 +979,7 @@ public class Range implements WritableComparable<Range> {
    * visibility.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq
@@ -998,7 +998,7 @@ public class Range implements WritableComparable<Range> {
    * and timestamp.
    *
    * @param row
-   *          row row to cover
+   *          row to cover
    * @param cf
    *          column family to cover
    * @param cq

Reply via email to