You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
make some Handler callback magic synchronous to avoid having to implement it properly
This commit is contained in:
@@ -114,8 +114,9 @@ public final class Looper {
|
||||
* Run the message queue in this thread. Be sure to call
|
||||
* {@link #quit()} to end the loop.
|
||||
*/
|
||||
public static void loop() {/*
|
||||
final Looper me = myLooper();
|
||||
public static void loop() {
|
||||
System.out.println("oops, Looper.loop called... and we don't implement that");
|
||||
/*final Looper me = myLooper();
|
||||
if (me == null) {
|
||||
throw new RuntimeException("No Looper; Looper.prepare() wasn't called on this thread.");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user