1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-25 09:08:49 -05:00

remove a useless focus handler

This commit is contained in:
Jesse Vincent 2009-11-25 15:41:40 +00:00
parent ae26b0eb0c
commit 0f85f22495

View File

@ -1795,23 +1795,6 @@ public class MessageList extends K9ListActivity
onDelete(message, (Integer)v.getTag());
}
});
holder.delete.setOnFocusChangeListener(new OnFocusChangeListener()
{
public void onFocusChange(View v, boolean x)
{
if (x)
{
Log.v(Email.LOG_TAG, "Focus! ");
}
else
{
Log.v(Email.LOG_TAG, "unfocus! ");
}
}
});
if (message != null)
{