mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
remove dismissDialog() and removeDialog()
One's a no-op the one place it was used, and the other's not used at all
This commit is contained in:
parent
77a5d9c217
commit
ed781b36b5
2 changed files with 0 additions and 21 deletions
|
@ -1427,8 +1427,6 @@ public class BoardDelegate extends DelegateBase
|
|||
data = nli.makeLaunchJSON();
|
||||
}
|
||||
if ( null != data ) {
|
||||
removeDialog( DlgID.CONFIRM_THEN );
|
||||
|
||||
recordInviteSent( InviteMeans.NFC, null );
|
||||
}
|
||||
return data;
|
||||
|
|
|
@ -466,25 +466,6 @@ public class DelegateBase implements DlgClickNotify,
|
|||
}
|
||||
}
|
||||
|
||||
protected void removeDialog( DlgID dlgID )
|
||||
{
|
||||
removeDialog( dlgID.ordinal() );
|
||||
}
|
||||
|
||||
protected void dismissDialog( DlgID dlgID )
|
||||
{
|
||||
try {
|
||||
m_activity.dismissDialog( dlgID.ordinal() );
|
||||
} catch ( Exception ex ) {
|
||||
// Log.ex( ex );
|
||||
}
|
||||
}
|
||||
|
||||
protected void removeDialog( int id )
|
||||
{
|
||||
m_activity.removeDialog( id );
|
||||
}
|
||||
|
||||
protected AlertDialog.Builder makeAlertBuilder()
|
||||
{
|
||||
return LocUtils.makeAlertBuilder( m_activity );
|
||||
|
|
Loading…
Reference in a new issue