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/09/10 00:49:50 UTC

svn commit: r1382604 - /incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Author: benh
Date: Sun Sep  9 22:49:49 2012
New Revision: 1382604

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

Modified:
    incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Modified: incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java?rev=1382604&r1=1382603&r2=1382604&view=diff
==============================================================================
--- incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java (original)
+++ incubator/mesos/trunk/src/java/src/org/apache/mesos/state/ZooKeeperState.java Sun Sep  9 22:49:49 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();
   }