com.stanfy.enroscar.goro.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enroscar-goro Show documentation
Show all versions of enroscar-goro Show documentation
Android laibrary for handling tasks in multiple queues
package com.stanfy.enroscar.goro;
import android.os.Looper;
/**
* Utilities.
*/
final class Util {
private Util() { }
public static boolean checkMainThread() {
return Looper.myLooper() == Looper.getMainLooper();
}
}