remove onConfigurationChanged(); no longer called

Removing from AndroidManifest meant the overridden method is no longer
called, so remove it and the code it calls.
This commit is contained in:
Eric House 2017-05-03 07:01:21 -07:00
parent 14dd3b4950
commit 77a5d9c217
3 changed files with 0 additions and 16 deletions

View file

@ -728,14 +728,6 @@ public class BoardDelegate extends DelegateBase
showInviteChoicesThen( Action.LAUNCH_INVITE_ACTION, info );
}
@Override
public void orientationChanged()
{
Log.d( TAG, "BoardDelegate.orientationChanged()" );
initToolbar();
m_view.orientationChanged();
}
@Override
protected void setTitle()
{

View file

@ -104,7 +104,6 @@ public class DelegateBase implements DlgClickNotify,
protected void onDestroy() {}
protected void onWindowFocusChanged( boolean hasFocus ) {}
protected boolean handleBackPressed() { return false; }
public void orientationChanged() {}
protected void requestWindowFeature( int feature ) {}

View file

@ -192,13 +192,6 @@ public class XWActivity extends FragmentActivity
return m_dlgt.onContextItemSelected( item );
}
@Override
public void onConfigurationChanged( Configuration newConfig )
{
m_dlgt.orientationChanged();
super.onConfigurationChanged( newConfig );
}
@Override
protected void onActivityResult( int requestCode, int resultCode,
Intent data )