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/11/04 02:28:42 UTC

svn commit: r1405447 - /incubator/mesos/branches/0.10.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Author: benh
Date: Sun Nov  4 01:28:42 2012
New Revision: 1405447

URL: http://svn.apache.org/viewvc?rev=1405447&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.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java

Modified: incubator/mesos/branches/0.10.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java
URL: http://svn.apache.org/viewvc/incubator/mesos/branches/0.10.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java?rev=1405447&r1=1405446&r2=1405447&view=diff
==============================================================================
--- incubator/mesos/branches/0.10.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java (original)
+++ incubator/mesos/branches/0.10.0/src/java/src/org/apache/mesos/state/ZooKeeperState.java Sun Nov  4 01:28:42 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();
   }