test for null ptr when firing runnable not when creating it

This commit is contained in:
eehouse 2010-04-20 13:31:08 +00:00
parent 2d6ddae8ce
commit e1378e91ab

View file

@ -506,13 +506,13 @@ public class BoardActivity extends Activity implements UtilCtxt {
public void requestTime()
{
if ( null != m_jniThread ) {
m_handler.post( new Runnable() {
public void run() {
m_handler.post( new Runnable() {
public void run() {
if ( null != m_jniThread ) {
m_jniThread.handle( JNIThread.JNICmd.CMD_DO );
}
} );
}
}
} );
}
public void remSelected()