mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-18 22:26:30 +01:00
remove logging
This commit is contained in:
parent
079859f510
commit
5da0a78710
3 changed files with 0 additions and 5 deletions
|
@ -32,7 +32,6 @@ public class XWActivity extends Activity {
|
|||
|
||||
protected void onCreate( Bundle savedInstanceState, DelegateBase dlgt )
|
||||
{
|
||||
DbgUtils.logf( "<eeh>XWActivity.onCreate()" );
|
||||
super.onCreate( savedInstanceState );
|
||||
m_dlgt = dlgt;
|
||||
dlgt.init( savedInstanceState );
|
||||
|
@ -90,7 +89,6 @@ public class XWActivity extends Activity {
|
|||
@Override
|
||||
public boolean onCreateOptionsMenu( Menu menu )
|
||||
{
|
||||
DbgUtils.logf( "XWListActivity.onCreateOptionsMenu called" );
|
||||
return m_dlgt.onCreateOptionsMenu( menu );
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,6 @@ public class XWListActivity extends ListActivity {
|
|||
|
||||
protected void onCreate( Bundle savedInstanceState, DelegateBase dlgt )
|
||||
{
|
||||
DbgUtils.logf( "<eeh>XWListActivity.onCreate()" );
|
||||
super.onCreate( savedInstanceState );
|
||||
m_dlgt = dlgt;
|
||||
dlgt.init( savedInstanceState );
|
||||
|
@ -90,7 +89,6 @@ public class XWListActivity extends ListActivity {
|
|||
@Override
|
||||
public boolean onCreateOptionsMenu( Menu menu )
|
||||
{
|
||||
DbgUtils.logf( "XWListActivity.onCreateOptionsMenu called" );
|
||||
return m_dlgt.onCreateOptionsMenu( menu );
|
||||
}
|
||||
|
||||
|
|
|
@ -429,7 +429,6 @@ public class LocUtils {
|
|||
while ( iter.hasNext() ) {
|
||||
WeakReference<Menu> ref = iter.next();
|
||||
if ( null == ref.get() ) {
|
||||
DbgUtils.logf( "LocUtils.pareMenus(): removing menu as ref is gone" );
|
||||
iter.remove();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue