org.oscim.utils.ThreadUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vtm-web Show documentation
Show all versions of vtm-web Show documentation
OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.
package org.oscim.utils;
public class ThreadUtils {
public static void assertMainThread() {
}
public static boolean isMainThread() {
return true;
}
public static void init() {
}
}