예제 #1
0
파일: Util.java 프로젝트: gubo/slipwire
 public static void assertMainThread() {
   if (Looper.myLooper() != Looper.getMainLooper()) {
     throw new RuntimeException();
   }
 }