blob: 66c3e418057e697002f3d9545733560a45e6754d [file] [log] [blame]
package com.android.volley.toolbox;
import android.os.Looper;
final class Threads {
private Threads() {}
static void throwIfNotOnMainThread() {
if (Looper.myLooper() != Looper.getMainLooper()) {
throw new IllegalStateException("Must be invoked from the main thread.");
}
}
}