add Overrides as part of sanity check

This commit is contained in:
Eric House 2019-03-08 11:10:16 -08:00
parent 21220bc839
commit 5a8e21468f
10 changed files with 15 additions and 0 deletions

View file

@ -533,6 +533,7 @@ public class BoardDelegate extends DelegateBase
}
private static int s_noLockCount = 0; // supports a quick debugging hack
@Override
protected void init( Bundle savedInstanceState )
{
m_isFirstLaunch = null == savedInstanceState;

View file

@ -158,6 +158,7 @@ public class DictBrowseDelegate extends DelegateBase
m_activity = delegator.getActivity();
}
@Override
protected void init( Bundle savedInstanceState )
{
Bundle args = getArguments();

View file

@ -246,6 +246,7 @@ public class DwnldDelegate extends ListDelegateBase {
}
}
@Override
protected void init( Bundle savedInstanceState )
{
m_dfts = new ArrayList<DownloadFilesTask>();

View file

@ -448,6 +448,7 @@ public class GameConfigDelegate extends DelegateBase
lp.isLocal = !Utils.getChecked( dialog, R.id.remote_check );
}
@Override
protected void init( Bundle savedInstanceState )
{
getBundledData( savedInstanceState );

View file

@ -124,6 +124,12 @@ abstract class InviteDelegate extends ListDelegateBase
m_checked = new HashSet<InviterItem>();
}
@Override
protected void init( Bundle sis )
{
super.init( sis );
}
protected void init( String descTxt, int emptyMsgId )
{
m_inviteButton = (Button)findViewById( R.id.button_invite );

View file

@ -135,6 +135,7 @@ public class PrefsDelegate extends DelegateBase
return dialog;
}
@Override
protected void init( Bundle savedInstanceState )
{
if ( null == s_keysHash ) {

View file

@ -91,6 +91,7 @@ public class RelayInviteDelegate extends InviteDelegate {
m_activity = delegator.getActivity();
}
@Override
protected void init( Bundle savedInstanceState )
{
if ( BuildConfig.RELAYINVITE_SUPPORTED ) {

View file

@ -74,6 +74,7 @@ public class StudyListDelegate extends ListDelegateBase
m_activity = delegator.getActivity();
}
@Override
protected void init( Bundle sis )
{
m_list = (ListView)findViewById( android.R.id.list );

View file

@ -94,6 +94,7 @@ public class LocDelegate extends ListDelegateBase
setListAdapter( m_adapter );
}
@Override
protected void init( Bundle savedInstanceState )
{
m_searchButton = (ImageButton)findViewById( R.id.loc_search_button );

View file

@ -60,6 +60,7 @@ public class LocItemEditDelegate extends DelegateBase implements TextWatcher {
m_activity = delegator.getActivity();
}
@Override
protected void init( Bundle savedInstanceState )
{
String key = getIntent().getStringExtra( KEY );