remove unnecessary setAction call. (Haven't tested if others can go.)

This commit is contained in:
Andy2 2011-06-06 18:32:17 -07:00
parent 2ce4c1417c
commit c21a494e0b

View file

@ -1220,7 +1220,6 @@ public class BoardActivity extends XWActivity
private void startChatActivity()
{
Intent intent = new Intent( this, ChatActivity.class );
intent.setAction( Intent.ACTION_EDIT );
intent.putExtra( BoardActivity.INTENT_KEY_NAME, m_name );
startActivityForResult( intent, CHAT_REQUEST );
}