You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2020/09/01 15:34:40 UTC

[accumulo] branch main updated: Removed javadoc references to deprecated classes (#1694)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 6942407  Removed javadoc references to deprecated classes (#1694)
6942407 is described below

commit 69424078c23b13fd73a833909b9471fde9c3446e
Author: cradal <20...@users.noreply.github.com>
AuthorDate: Tue Sep 1 11:34:33 2020 -0400

    Removed javadoc references to deprecated classes (#1694)
---
 .../java/org/apache/accumulo/core/client/admin/TableOperations.java   | 4 ++--
 .../accumulo/core/client/admin/compaction/TooManyDeletesSelector.java | 1 -
 .../org/apache/accumulo/core/iterators/user/IndexedDocIterator.java   | 3 +--
 .../org/apache/accumulo/core/iterators/user/IntersectingIterator.java | 3 +--
 4 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
index 866f4cc..ea7ce2e 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/admin/TableOperations.java
@@ -674,7 +674,7 @@ public interface TableOperations {
 
   /**
    * Bulk import all the files in a directory into a table. Files can be created using
-   * {@code AccumuloFileOutputFormat} and {@link RFile#newWriter()}
+   * {@link RFile#newWriter()}
    *
    * @param tableName
    *          the name of the table
@@ -784,7 +784,7 @@ public interface TableOperations {
 
   /**
    * Bulk import the files in a directory into a table. Files can be created using
-   * {@code AccumuloFileOutputFormat} and {@link RFile#newWriter()}.
+   * {@link RFile#newWriter()}.
    * <p>
    * This new method of bulk import examines files in the current process outside of holding a table
    * lock. The old bulk import method ({@link #importDirectory(String, String, String, boolean)})
diff --git a/core/src/main/java/org/apache/accumulo/core/client/admin/compaction/TooManyDeletesSelector.java b/core/src/main/java/org/apache/accumulo/core/client/admin/compaction/TooManyDeletesSelector.java
index 1c9a419..881004c 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/admin/compaction/TooManyDeletesSelector.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/admin/compaction/TooManyDeletesSelector.java
@@ -56,7 +56,6 @@ import org.apache.accumulo.core.client.summary.summarizers.DeletesSummarizer;
  *
  * <p>
  * Bulk files can be generated with summary information by calling
- * {@code AccumuloFileOutputFormat#setSummarizers(JobConf, SummarizerConfiguration...)} or
  * {@link WriterOptions#withSummarizers(SummarizerConfiguration...)}
  *
  * <p>
diff --git a/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java b/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
index cd92e2b..7d568fe 100644
--- a/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
+++ b/core/src/main/java/org/apache/accumulo/core/iterators/user/IndexedDocIterator.java
@@ -56,8 +56,7 @@ import org.slf4j.LoggerFactory;
  *
  * row: shardID, colfam: indexColf, colqual: doctype\0docID\0info, value: doc
  *
- * This iterator is commonly used with BatchScanner or AccumuloInputFormat, to parallelize the
- * search over all shardIDs.
+ * This iterator is commonly used with BatchScanner to parallelize the search over all shardIDs.
  */
 public class IndexedDocIterator extends IntersectingIterator {
   private static final Logger log = LoggerFactory.getLogger(IndexedDocIterator.class);
diff --git a/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java b/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
index a3afa4e..952d019 100644
--- a/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
+++ b/core/src/main/java/org/apache/accumulo/core/iterators/user/IntersectingIterator.java
@@ -51,8 +51,7 @@ import org.apache.hadoop.io.Text;
  *
  * row: shardID, colfam: (empty), colqual: docID
  *
- * This iterator is commonly used with BatchScanner or AccumuloInputFormat, to parallelize the
- * search over all shardIDs.
+ * This iterator is commonly used with BatchScanner to parallelize the search over all shardIDs.
  *
  * This iterator will *ignore* any columnFamilies passed to
  * {@link #seek(Range, Collection, boolean)} as it performs intersections over terms. Extending