Skip to content

Commit e76bed2

Browse files
committed
Made configuration accessors public
1 parent 04db785 commit e76bed2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/main/java/bwapi/BWClientConfiguration.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public BWClientConfiguration withDebugConnection(boolean value) {
1313
debugConnection = value;
1414
return this;
1515
}
16-
boolean getDebugConnection() {
16+
public boolean getDebugConnection() {
1717
return debugConnection;
1818
}
1919
private boolean debugConnection;
@@ -26,7 +26,7 @@ public BWClientConfiguration withAutoContinue(boolean value) {
2626
autoContinue = value;
2727
return this;
2828
}
29-
boolean getAutoContinue() {
29+
public boolean getAutoContinue() {
3030
return autoContinue;
3131
}
3232
private boolean autoContinue = false;
@@ -44,7 +44,7 @@ public BWClientConfiguration withUnlimitedFrameZero(boolean value) {
4444
unlimitedFrameZero = value;
4545
return this;
4646
}
47-
boolean getUnlimitedFrameZero() {
47+
public boolean getUnlimitedFrameZero() {
4848
return unlimitedFrameZero;
4949
}
5050
private boolean unlimitedFrameZero = true;
@@ -60,7 +60,7 @@ public BWClientConfiguration withMaxFrameDurationMs(int value) {
6060
maxFrameDurationMs = value;
6161
return this;
6262
}
63-
int getMaxFrameDurationMs() {
63+
public int getMaxFrameDurationMs() {
6464
return maxFrameDurationMs;
6565
}
6666
private int maxFrameDurationMs = 40;
@@ -83,7 +83,7 @@ public BWClientConfiguration withAsync(boolean value) {
8383
async = value;
8484
return this;
8585
}
86-
boolean getAsync() {
86+
public boolean getAsync() {
8787
return async;
8888
}
8989
private boolean async = false;
@@ -97,7 +97,7 @@ public BWClientConfiguration withAsyncFrameBufferCapacity(int size) {
9797
asyncFrameBufferCapacity = size;
9898
return this;
9999
}
100-
int getAsyncFrameBufferCapacity() {
100+
public int getAsyncFrameBufferCapacity() {
101101
return asyncFrameBufferCapacity;
102102
}
103103
private int asyncFrameBufferCapacity = 10;
@@ -114,7 +114,7 @@ public BWClientConfiguration withAsyncUnsafe(boolean value) {
114114
asyncUnsafe = value;
115115
return this;
116116
}
117-
boolean getAsyncUnsafe() {
117+
public boolean getAsyncUnsafe() {
118118
return asyncUnsafe;
119119
}
120120
private boolean asyncUnsafe = false;
@@ -127,7 +127,7 @@ public BWClientConfiguration withLogVerbosely(boolean value) {
127127
logVerbosely = value;
128128
return this;
129129
}
130-
boolean getLogVerbosely() {
130+
public boolean getLogVerbosely() {
131131
return logVerbosely;
132132
}
133133
private boolean logVerbosely = false;

0 commit comments

Comments
 (0)