mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
don't log the one command that's supposed to get posted post-stop
This commit is contained in:
parent
8099b77e52
commit
98989abb14
1 changed files with 1 additions and 1 deletions
|
@ -651,7 +651,7 @@ public class JNIThread extends Thread {
|
|||
{
|
||||
QueueElem elem = new QueueElem( cmd, true, args );
|
||||
m_queue.add( elem );
|
||||
if ( m_stopped ) {
|
||||
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
|
||||
DbgUtils.logf( "WARNING: adding %s to stopped thread!!!",
|
||||
cmd.toString() );
|
||||
DbgUtils.printStack();
|
||||
|
|
Loading…
Reference in a new issue