This commit is contained in:
zhongchao
2021-04-12 15:54:55 +08:00
parent 6cc1a9fe2b
commit 8fa4e0b746
2 changed files with 5 additions and 5 deletions

View File

@@ -5,9 +5,9 @@ import android.os.Looper;
public class UiThreadHandler {
private static Handler sUiHandler = new Handler( Looper.getMainLooper() );
private static final Handler sUiHandler = new Handler( Looper.getMainLooper() );
private static Object sToken = new Object();
private static final Object sToken = new Object();
public UiThreadHandler() {
}