remove unused variable

This commit is contained in:
Eric House 2017-03-01 06:14:35 -08:00
parent 05d583a324
commit 5e23d6fc75

View file

@ -134,7 +134,6 @@ public class BoardDelegate extends DelegateBase
private JNIThread.GameStateInfo m_gsi; private JNIThread.GameStateInfo m_gsi;
private DlgID m_blockingDlgID = DlgID.NONE; private DlgID m_blockingDlgID = DlgID.NONE;
private String m_room;
private String m_toastStr; private String m_toastStr;
private String[] m_words; private String[] m_words;
private String m_getDict; private String m_getDict;
@ -686,7 +685,6 @@ public class BoardDelegate extends DelegateBase
protected void onSaveInstanceState( Bundle outState ) protected void onSaveInstanceState( Bundle outState )
{ {
outState.putString( ROOM, m_room );
outState.putString( TOASTSTR, m_toastStr ); outState.putString( TOASTSTR, m_toastStr );
outState.putStringArray( WORDS, m_words ); outState.putStringArray( WORDS, m_words );
outState.putString( GETDICT, m_getDict ); outState.putString( GETDICT, m_getDict );
@ -695,7 +693,6 @@ public class BoardDelegate extends DelegateBase
private void getBundledData( Bundle bundle ) private void getBundledData( Bundle bundle )
{ {
if ( null != bundle ) { if ( null != bundle ) {
m_room = bundle.getString( ROOM );
m_toastStr = bundle.getString( TOASTSTR ); m_toastStr = bundle.getString( TOASTSTR );
m_words = bundle.getStringArray( WORDS ); m_words = bundle.getStringArray( WORDS );
m_getDict = bundle.getString( GETDICT ); m_getDict = bundle.getString( GETDICT );
@ -1650,7 +1647,6 @@ public class BoardDelegate extends DelegateBase
skipDismiss = !tryRematchInvites( false ); skipDismiss = !tryRematchInvites( false );
} else if ( !m_haveInvited ) { } else if ( !m_haveInvited ) {
m_haveInvited = true; m_haveInvited = true;
m_room = room;
showDialogFragment( DlgID.DLG_INVITE ); showDialogFragment( DlgID.DLG_INVITE );
invalidateOptionsMenuIf(); invalidateOptionsMenuIf();
skipDismiss = true; skipDismiss = true;