You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2014/01/13 21:17:41 UTC

git commit: ACCUMULO-2167 removed deprecation from ZooKeeperInstance(String, String) constructor

Updated Branches:
  refs/heads/1.6.0-SNAPSHOT 782262a6b -> e99275f92


ACCUMULO-2167 removed deprecation from ZooKeeperInstance(String, String) constructor


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

Branch: refs/heads/1.6.0-SNAPSHOT
Commit: e99275f9241c6297072d09d40eb6b2fbe3cc8ffa
Parents: 782262a
Author: Keith Turner <kt...@apache.org>
Authored: Mon Jan 13 15:11:54 2014 -0500
Committer: Keith Turner <kt...@apache.org>
Committed: Mon Jan 13 15:16:59 2014 -0500

----------------------------------------------------------------------
 .../java/org/apache/accumulo/core/client/ZooKeeperInstance.java    | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/e99275f9/core/src/main/java/org/apache/accumulo/core/client/ZooKeeperInstance.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/client/ZooKeeperInstance.java b/core/src/main/java/org/apache/accumulo/core/client/ZooKeeperInstance.java
index 8b0546a..f776a79 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/ZooKeeperInstance.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/ZooKeeperInstance.java
@@ -78,9 +78,7 @@ public class ZooKeeperInstance implements Instance {
    *          The name of specific accumulo instance. This is set at initialization time.
    * @param zooKeepers
    *          A comma separated list of zoo keeper server locations. Each location can contain an optional port, of the format host:port.
-   * @deprecated since 1.6.0; Use {@link #ZooKeeperInstance(Configuration)} instead.
    */
-  @Deprecated
   public ZooKeeperInstance(String instanceName, String zooKeepers) {
     this(ClientConfiguration.loadDefault().withInstance(instanceName).withZkHosts(zooKeepers));
   }