fix(android): correct overriden method protection levels

This commit is contained in:
codinronan 2019-04-14 23:22:29 -05:00
parent 96d1d9177c
commit f03d2fb4b8

View File

@ -93,7 +93,7 @@ public class StripePaymentsPlugin extends CordovaPlugin {
}
@Override
protected void onNewIntent(Intent intent) {
public void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (intent.getData() != null && intent.getData().getQuery() != null) {
// The client secret and source ID found here is identical to
@ -118,7 +118,7 @@ public class StripePaymentsPlugin extends CordovaPlugin {
}
@Override
protected void onDestroy() {
public void onDestroy() {
super.onDestroy();
mPaymentSession.onDestroy();
}