remove logging

This commit is contained in:
Eric House 2014-03-04 21:12:40 -08:00
parent cfee7ef8ac
commit 811be34a20

View file

@ -243,7 +243,6 @@ public class BoardActivity extends XWActivity
private static void setThis( BoardActivity self )
{
synchronized( s_this ) {
DbgUtils.logf( "setThis(self=%H)", self );
Assert.assertTrue( !s_this.contains(self) ); // here
s_this.add( self );
}
@ -252,7 +251,6 @@ public class BoardActivity extends XWActivity
private static void clearThis( BoardActivity self )
{
synchronized( s_this ) {
DbgUtils.logf( "clearThis(s_this=%H)", s_this );
Assert.assertTrue( s_this.contains( self ) );
s_this.remove( self );
}