mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
comment out dead code referencing strings
This commit is contained in:
parent
ced5da45a5
commit
a676b5beb0
1 changed files with 31 additions and 31 deletions
|
@ -922,40 +922,40 @@ public class GameConfig extends XWActivity
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int titleForDlg( int id )
|
// private int titleForDlg( int id )
|
||||||
{
|
// {
|
||||||
switch( id ) {
|
// switch( id ) {
|
||||||
// case ROLE_EDIT_RELAY:
|
// // case ROLE_EDIT_RELAY:
|
||||||
// return R.string.tab_relay;
|
// // return R.string.tab_relay;
|
||||||
// case ROLE_EDIT_SMS:
|
// // case ROLE_EDIT_SMS:
|
||||||
// return R.string.tab_sms;
|
// // return R.string.tab_sms;
|
||||||
// case ROLE_EDIT_BT:
|
// // case ROLE_EDIT_BT:
|
||||||
// return R.string.tab_bluetooth;
|
// // return R.string.tab_bluetooth;
|
||||||
}
|
// }
|
||||||
Assert.fail();
|
// Assert.fail();
|
||||||
return -1;
|
// return -1;
|
||||||
}
|
// }
|
||||||
|
|
||||||
private String[] makeXportStrings()
|
// private String[] makeXportStrings()
|
||||||
{
|
// {
|
||||||
ArrayList<String> strings = new ArrayList<String>();
|
// ArrayList<String> strings = new ArrayList<String>();
|
||||||
ArrayList<CommsAddrRec.CommsConnType> types
|
// ArrayList<CommsAddrRec.CommsConnType> types
|
||||||
= new ArrayList<CommsAddrRec.CommsConnType>();
|
// = new ArrayList<CommsAddrRec.CommsConnType>();
|
||||||
|
|
||||||
strings.add( getString(R.string.tab_relay) );
|
// strings.add( getString(R.string.tab_relay) );
|
||||||
types.add( CommsAddrRec.CommsConnType.COMMS_CONN_RELAY );
|
// types.add( CommsAddrRec.CommsConnType.COMMS_CONN_RELAY );
|
||||||
|
|
||||||
if ( m_canDoSMS ) {
|
// if ( m_canDoSMS ) {
|
||||||
strings.add( getString(R.string.tab_sms) );
|
// strings.add( getString(R.string.tab_sms) );
|
||||||
types.add( CommsAddrRec.CommsConnType.COMMS_CONN_SMS );
|
// types.add( CommsAddrRec.CommsConnType.COMMS_CONN_SMS );
|
||||||
}
|
// }
|
||||||
if ( m_canDoBT ) {
|
// if ( m_canDoBT ) {
|
||||||
strings.add( getString(R.string.tab_bluetooth) );
|
// strings.add( getString(R.string.tab_bluetooth) );
|
||||||
types.add( CommsAddrRec.CommsConnType.COMMS_CONN_BT );
|
// types.add( CommsAddrRec.CommsConnType.COMMS_CONN_BT );
|
||||||
}
|
// }
|
||||||
m_types = types.toArray( new CommsAddrRec.CommsConnType[types.size()] );
|
// m_types = types.toArray( new CommsAddrRec.CommsConnType[types.size()] );
|
||||||
return strings.toArray( new String[strings.size()] );
|
// return strings.toArray( new String[strings.size()] );
|
||||||
}
|
// }
|
||||||
|
|
||||||
private void saveChanges()
|
private void saveChanges()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue