Skip to content

Commit e2b1616

Browse files
author
Chris Severs
committed
Making some setters public so driver can be used in other methods
1 parent 26ad65e commit e2b1616

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

h2o-zookeeper/src/main/java/water/zookeeper/h2odriver.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ public class h2odriver {
2323
public static boolean g_start = false;
2424
public static boolean g_wait = false;
2525

26-
void setZk(String v) {
26+
public void setZk(String v) {
2727
_zk = v;
2828
}
2929

30-
void setZkroot(String v) {
30+
public void setZkroot(String v) {
3131
_zkroot = v;
3232
}
3333

34-
void setNumNodes(int v) {
34+
public void setNumNodes(int v) {
3535
_numNodes = v;
3636
}
3737

38-
void setCloudFormationTimeoutSeconds(int v) {
38+
public void setCloudFormationTimeoutSeconds(int v) {
3939
_cloudFormationTimeoutSeconds = v;
4040
}
4141

0 commit comments

Comments
 (0)