You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mm...@apache.org on 2018/12/06 18:46:32 UTC

[accumulo] branch master updated: Minor corrections to javadoc

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 717e9ae  Minor corrections to javadoc
717e9ae is described below

commit 717e9ae5931c8c1ac8064f5dbbe88c3ebab3bc24
Author: Mike Miller <mm...@apache.org>
AuthorDate: Thu Dec 6 13:46:07 2018 -0500

    Minor corrections to javadoc
---
 .../org/apache/accumulo/hadoop/mapreduce/AccumuloInputFormat.java     | 4 ++--
 .../org/apache/accumulo/hadoop/mapreduce/AccumuloRowInputFormat.java  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloInputFormat.java b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloInputFormat.java
index 168765c..9ea2ff4 100644
--- a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloInputFormat.java
+++ b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloInputFormat.java
@@ -41,8 +41,8 @@ import org.slf4j.LoggerFactory;
  * job using the {@link #configure()} method, which provides a fluent API. For Example:
  *
  * <pre>
- * AccumuloInputFormat.configure().clientProperties(props).table(name).auths(auths) // required
- *     .addIterator(iter1).ranges(ranges).fetchColumns(columns).executionHints(hints)
+ * AccumuloInputFormat.configure().clientProperties(props).table(name) // required
+ *     .auths(auths).addIterator(iter1).ranges(ranges).fetchColumns(columns).executionHints(hints)
  *     .samplerConfiguration(sampleConf).disableAutoAdjustRanges() // enabled by default
  *     .scanIsolation() // not available with batchScan()
  *     .offlineScan() // not available with batchScan()
diff --git a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloRowInputFormat.java b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloRowInputFormat.java
index 2a47434..90147fd 100644
--- a/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloRowInputFormat.java
+++ b/hadoop-mapreduce/src/main/java/org/apache/accumulo/hadoop/mapreduce/AccumuloRowInputFormat.java
@@ -43,8 +43,8 @@ import org.apache.hadoop.mapreduce.TaskAttemptContext;
  * For Example:
  *
  * <pre>
- * AccumuloRowInputFormat.configure().clientProperties(props).table(name).auths(auths) // required
- *     .addIterator(iter1).ranges(ranges).fetchColumns(columns).executionHints(hints)
+ * AccumuloRowInputFormat.configure().clientProperties(props).table(name) // required
+ *     .auths(auths).addIterator(iter1).ranges(ranges).fetchColumns(columns).executionHints(hints)
  *     .samplerConfiguration(sampleConf).disableAutoAdjustRanges() // enabled by default
  *     .scanIsolation() // not available with batchScan()
  *     .offlineScan() // not available with batchScan()