mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +01:00
test for null ptr when firing runnable not when creating it
This commit is contained in:
parent
2d6ddae8ce
commit
e1378e91ab
1 changed files with 5 additions and 5 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue