You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/12/02 21:37:34 UTC

[46/50] [abbrv] accumulo git commit: ACCUMULO-3167 Fix javadoc typo/tag usage

ACCUMULO-3167 Fix javadoc typo/tag usage


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/3bb20cd1
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/3bb20cd1
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/3bb20cd1

Branch: refs/heads/metrics2
Commit: 3bb20cd1f1a7027967abdc95e87d8b7a044c9d81
Parents: eed1656
Author: Christopher Tubbs <ct...@apache.org>
Authored: Mon Dec 1 19:34:24 2014 -0500
Committer: Christopher Tubbs <ct...@apache.org>
Committed: Mon Dec 1 19:34:24 2014 -0500

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/cluster/AccumuloCluster.java   | 4 ----
 .../java/org/apache/accumulo/cluster/RemoteShellOptions.java     | 2 +-
 .../test/java/org/apache/accumulo/harness/AccumuloClusterIT.java | 2 --
 .../java/org/apache/accumulo/harness/MiniClusterHarness.java     | 4 ----
 4 files changed, 1 insertion(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/3bb20cd1/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java
----------------------------------------------------------------------
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 e823f15..a3dbb09 100644
--- a/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java
+++ b/minicluster/src/main/java/org/apache/accumulo/cluster/AccumuloCluster.java
@@ -64,15 +64,11 @@ public interface AccumuloCluster {
 
   /**
    * Start the AccumuloCluster
-   *
-   * @throws Exception
    */
   void start() throws Exception;
 
   /**
    * Stop the AccumuloCluster
-   *
-   * @throws Exception
    */
   void stop() throws Exception;
 

http://git-wip-us.apache.org/repos/asf/accumulo/blob/3bb20cd1/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
----------------------------------------------------------------------
diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
index eb3b9ed..714096e 100644
--- a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
+++ b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
@@ -29,7 +29,7 @@ import org.slf4j.LoggerFactory;
 /**
  * Property-based configuration of options to control how SSH is performed.
  *
- * A properties file can be provided using {@link #SSH_PROPETIES_FILE} or using the normal system properties. Any relevant properties set in the system
+ * A properties file can be provided using {@link #SSH_PROPERTIES_FILE} or using the normal system properties. Any relevant properties set in the system
  * properties take precedence over the provided file.
  */
 public class RemoteShellOptions {

http://git-wip-us.apache.org/repos/asf/accumulo/blob/3bb20cd1/test/src/test/java/org/apache/accumulo/harness/AccumuloClusterIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/harness/AccumuloClusterIT.java b/test/src/test/java/org/apache/accumulo/harness/AccumuloClusterIT.java
index 6c496e9..d9d52d6 100644
--- a/test/src/test/java/org/apache/accumulo/harness/AccumuloClusterIT.java
+++ b/test/src/test/java/org/apache/accumulo/harness/AccumuloClusterIT.java
@@ -201,8 +201,6 @@ public abstract class AccumuloClusterIT extends AccumuloIT implements MiniCluste
    * already exist.
    *
    * @return A directory which can be expected to exist on the Cluster's FileSystem
-   * @throws IOException
-   * @throws IllegalArgumentException
    */
   public String getUsableDir() throws IllegalArgumentException, IOException {
     if (ClusterType.MINI == getClusterType()) {

http://git-wip-us.apache.org/repos/asf/accumulo/blob/3bb20cd1/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java b/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
index 61e7161..abdb627 100644
--- a/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
+++ b/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
@@ -47,10 +47,6 @@ public class MiniClusterHarness {
 
   /**
    * Create a MiniAccumuloCluster using the given Token as the credentials for the root user.
-   *
-   * @param token
-   * @return
-   * @throws Exception
    */
   public MiniAccumuloClusterImpl create(AuthenticationToken token) throws Exception {
     return create(MiniClusterHarness.class.getName(), Long.toString(COUNTER.incrementAndGet()), token);