remove logging

This commit is contained in:
Eric House 2014-05-15 05:31:40 -07:00
parent 5e70d28ea1
commit cbb10f6994

View file

@ -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 );
} }