Skip to content

Commit

Permalink
feat(android): Make Bridge.restoreInstanceState() public (#2538)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkirc committed Mar 9, 2020
1 parent ca8fa9e commit 7020f1f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ protected void storeDanglingPluginResult(PluginCall call, PluginResult result) {
* Restore any saved bundle state data
* @param savedInstanceState
*/
protected void restoreInstanceState(Bundle savedInstanceState) {
public void restoreInstanceState(Bundle savedInstanceState) {
String lastPluginId = savedInstanceState.getString(BUNDLE_LAST_PLUGIN_ID_KEY);
String lastPluginCallMethod = savedInstanceState.getString(BUNDLE_LAST_PLUGIN_CALL_METHOD_NAME_KEY);
String lastOptionsJson = savedInstanceState.getString(BUNDLE_PLUGIN_CALL_OPTIONS_SAVED_KEY);
Expand Down

0 comments on commit 7020f1f

Please sign in to comment.