blob: e51cba6bafd273ee987b19bb7f4b60625917226e [file] [log] [blame]
package org.wordpress.android.editor;
import org.wordpress.android.util.AppLog;
public class TestingUtils {
static public void waitFor(long milliseconds) {
try {
Thread.sleep(milliseconds);
} catch(InterruptedException e) {
AppLog.e(AppLog.T.EDITOR, "Thread interrupted");
}
}
}