Update Controllers.java

This commit is contained in:
ShirosakiMio 2024-09-09 11:04:07 +08:00
parent 32d1adb491
commit 80cff6c269
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class Controllers {
initialized = true;
CALLBACKS.forEach(callback -> {
Schedulers.androidUIThread().execute(() -> callback.run());
Schedulers.androidUIThread().execute(callback::run);
});
}