You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/12/11 00:58:32 UTC

svn commit: r1419889 - /incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Author: benh
Date: Mon Dec 10 23:58:31 2012
New Revision: 1419889

URL: http://svn.apache.org/viewvc?rev=1419889&view=rev
Log:
Make class ZooKeeperState from Java API public (contributed by Flo
Leibert, https://reviews.apache.org/r/6938).

Modified:
    incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Modified: incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java?rev=1419889&r1=1419888&r2=1419889&view=diff
==============================================================================
--- incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java (original)
+++ incubator/mesos/branches/0.10.x/src/java/src/org/apache/mesos/state/ZooKeeperState.java Mon Dec 10 23:58:31 2012
@@ -33,7 +33,7 @@ import org.apache.mesos.MesosNativeLibra
  * variables can not be more than 1 MB (actually slightly less since
  * we store some bookkeeping information).
  */
-class ZooKeeperState implements State {
+public class ZooKeeperState implements State {
   static {
     MesosNativeLibrary.load();
   }