You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by nn...@apache.org on 2014/05/13 01:59:44 UTC

git commit: Enriched the Java Docs in ZooKeeperState.java.

Repository: mesos
Updated Branches:
  refs/heads/master 3baf491c2 -> 4f58b7ed3


Enriched the Java Docs in ZooKeeperState.java.

Review: https://reviews.apache.org/r/21085


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

Branch: refs/heads/master
Commit: 4f58b7ed3df9555f7e5b6250e03f9565a5c16b1c
Parents: 3baf491
Author: Bernardo Gomez Palacio <be...@gmail.com>
Authored: Mon May 12 16:31:27 2014 -0700
Committer: Niklas Q. Nielsen <ni...@mesosphere.io>
Committed: Mon May 12 16:31:27 2014 -0700

----------------------------------------------------------------------
 .../src/org/apache/mesos/state/ZooKeeperState.java    | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/4f58b7ed/src/java/src/org/apache/mesos/state/ZooKeeperState.java
----------------------------------------------------------------------
diff --git a/src/java/src/org/apache/mesos/state/ZooKeeperState.java b/src/java/src/org/apache/mesos/state/ZooKeeperState.java
index a21a4ae..cb0eba0 100644
--- a/src/java/src/org/apache/mesos/state/ZooKeeperState.java
+++ b/src/java/src/org/apache/mesos/state/ZooKeeperState.java
@@ -32,8 +32,8 @@ public class ZooKeeperState extends AbstractState {
    *
    * @param servers List of ZooKeeper servers, e.g., 'ip1:port1,ip2:port2'.
    * @param timeout ZooKeeper session timeout.
-   * @param unit Unit for session timeout.
-   * @param znode Path to znode where "state" should be rooted.
+   * @param unit    Unit for session timeout.
+   * @param znode   Path to znode where "state" should be rooted.
    */
   public ZooKeeperState(String servers,
                         long timeout,
@@ -45,11 +45,11 @@ public class ZooKeeperState extends AbstractState {
   /**
    * Constructs a new instance of ZooKeeperState.
    *
-   * @param servers List of ZooKeeper servers (e.g., 'ip1:port1,ip2:port2').
-   * @param timeout ZooKeeper session timeout.
-   * @param unit Unit for session timeout.
-   * @param znode Path to znode where "state" should be rooted.
-   * @param scheme Authentication scheme (e.g., "digest").
+   * @param servers     List of ZooKeeper servers (e.g., 'ip1:port1,ip2:port2').
+   * @param timeout     ZooKeeper session timeout.
+   * @param unit        Unit for session timeout.
+   * @param znode       Path to znode where "state" should be rooted.
+   * @param scheme      Authentication scheme (e.g., "digest").
    * @param credentials Authentication credentials (e.g., "user:pass").
    */
   public ZooKeeperState(String servers,