remove redundant intent opening

This might be the reason there are sometimes two windows getting opened.
This commit is contained in:
Eric House 2020-09-01 16:06:21 -07:00
parent 07704969af
commit 10cf96aa46

View file

@ -1069,8 +1069,6 @@ public class GamesListDelegate extends ListDelegateBase
Log.d( TAG, "handleNewIntent(extras={%s})", DbgUtils.extrasToString( intent ) );
m_launchedGames.clear();
Assert.assertNotNull( intent );
invalRelayIDs( intent.getStringArrayExtra( RELAYIDS_EXTRA ) );
reloadGame( intent.getLongExtra( ROWID_EXTRA, -1 ) );
tryStartsFromIntent( intent );
}