remove unused method

This commit is contained in:
Eric House 2015-03-02 19:07:24 -08:00
parent 863d83bf44
commit 2b2b9982d0

View file

@ -406,7 +406,7 @@ public class SMSInviteDelegate extends InviteDelegate {
}
public Object getItem( final int position )
{
{
// For some reason I can't cache items to be returned.
// Checking/unchecking breaks for some but not all items,
// with some relation to whether they were scrolled into
@ -464,12 +464,5 @@ public class SMSInviteDelegate extends InviteDelegate {
ViewGroup parent ) {
return (View)getItem( position );
}
public boolean isChecked( int index )
{
SMSListItem item = m_items[index];
boolean checked = null != item && item.isChecked();
return checked;
}
}
}