mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-09 22:00:39 +01:00
remove logging
This commit is contained in:
parent
5e70d28ea1
commit
cbb10f6994
1 changed files with 2 additions and 2 deletions
|
@ -46,13 +46,13 @@ public class LocListAdapter extends XWListAdapter {
|
||||||
public int getCount()
|
public int getCount()
|
||||||
{
|
{
|
||||||
int count = m_searcher.matchSize();
|
int count = m_searcher.matchSize();
|
||||||
DbgUtils.logf(" LocListAdapter.getCount() => %d", count );
|
// DbgUtils.logf(" LocListAdapter.getCount() => %d", count );
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
public View getView( int position, View convertView, ViewGroup parent )
|
public View getView( int position, View convertView, ViewGroup parent )
|
||||||
{
|
{
|
||||||
DbgUtils.logf( "LocListAdapter.getView(position=%d)", position );
|
// DbgUtils.logf( "LocListAdapter.getView(position=%d)", position );
|
||||||
LocSearcher.Pair pair = m_searcher.getNthMatch( position );
|
LocSearcher.Pair pair = m_searcher.getNthMatch( position );
|
||||||
return LocListItem.create( m_context, pair, position );
|
return LocListItem.create( m_context, pair, position );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue