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
commit 18287e73b95d1cfba6cfa7d6f193e149e90e1470 Author: Mike Miller <mmil...@apache.org> AuthorDate: Thu Sep 6 17:02:25 2018 -0400 Fix javadoc #636 --- core/src/main/java/org/apache/accumulo/core/client/Connector.java | 4 ++-- .../src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/apache/accumulo/core/client/Connector.java b/core/src/main/java/org/apache/accumulo/core/client/Connector.java index 639fa67..904a483 100644 --- a/core/src/main/java/org/apache/accumulo/core/client/Connector.java +++ b/core/src/main/java/org/apache/accumulo/core/client/Connector.java @@ -166,7 +166,7 @@ public abstract class Connector { * @return BatchWriter object for configuring and writing data to * @throws TableNotFoundException * when the specified table doesn't exist - * @deprecated since 1.5.0; Use {@link createBatchWriter(String, BatchWriterConfig)} instead. + * @deprecated since 1.5.0; Use {@link #createBatchWriter(String, BatchWriterConfig)} instead. */ @Deprecated public abstract BatchWriter createBatchWriter(String tableName, long maxMemory, long maxLatency, @@ -283,7 +283,7 @@ public abstract class Connector { * Accessor method for internal instance object. * * @return the internal instance object - * @deprecated since 2.0.0, use {@link #info()} instead + * @deprecated since 2.0.0, use {@link AccumuloClient#info()} instead */ @Deprecated public abstract Instance getInstance(); diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java b/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java index 4f660e2..81107d1 100644 --- a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java +++ b/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java @@ -56,7 +56,7 @@ public interface AccumuloCluster { /** * Utility method to get a connector to the cluster. * - * @deprecated since 2.0.0, replaced by {{@link #getAccumuloClient()}} + * @deprecated since 2.0.0, replaced by {@link #getAccumuloClient(String, AuthenticationToken)} */ Connector getConnector(String user, AuthenticationToken token) throws AccumuloException, AccumuloSecurityException;