mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +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 );
|
QueueElem elem = new QueueElem( cmd, true, args );
|
||||||
m_queue.add( elem );
|
m_queue.add( elem );
|
||||||
if ( m_stopped ) {
|
if ( m_stopped && ! JNICmd.CMD_NONE.equals(cmd) ) {
|
||||||
DbgUtils.logf( "WARNING: adding %s to stopped thread!!!",
|
DbgUtils.logf( "WARNING: adding %s to stopped thread!!!",
|
||||||
cmd.toString() );
|
cmd.toString() );
|
||||||
DbgUtils.printStack();
|
DbgUtils.printStack();
|
||||||
|
|
Loading…
Reference in a new issue