Skip to content

Commit 74bd31e

Browse files
authored
Fix.
1 parent 580b6c5 commit 74bd31e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ffi/TerracottaAndroidAPI.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static String getState() {
7878
* @implNote Usually, this method doesn't take a long time to fetch states.
7979
* However, when initializing the EasyTier, state fetching may block for ~1 seconds.
8080
*/
81-
private static void setWaiting() {
81+
public static void setWaiting() {
8282
assertStarted();
8383
setWaiting0();
8484
}
@@ -91,7 +91,7 @@ private static void setWaiting() {
9191
* @implNote Usually, this method doesn't take a long time to fetch states.
9292
* However, when initializing the EasyTier, state fetching may block for ~1 seconds.
9393
*/
94-
private static void setScanning(@Nullable String player) {
94+
public static void setScanning(@Nullable String player) {
9595
assertStarted();
9696
setScanning0(player);
9797
}
@@ -107,7 +107,7 @@ private static void setScanning(@Nullable String player) {
107107
* @implNote Usually, this method doesn't take a long time to fetch states.
108108
* However, when initializing the EasyTier, state fetching may block for ~1 seconds.
109109
*/
110-
private static boolean setGuesting(String room, @Nullable String player) {
110+
public static boolean setGuesting(String room, @Nullable String player) {
111111
Objects.requireNonNull(room, "room");
112112

113113
assertStarted();

0 commit comments

Comments
 (0)