fix(android): correct overriden method protection levels
This commit is contained in:
parent
96d1d9177c
commit
f03d2fb4b8
@ -93,7 +93,7 @@ public class StripePaymentsPlugin extends CordovaPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onNewIntent(Intent intent) {
|
public void onNewIntent(Intent intent) {
|
||||||
super.onNewIntent(intent);
|
super.onNewIntent(intent);
|
||||||
if (intent.getData() != null && intent.getData().getQuery() != null) {
|
if (intent.getData() != null && intent.getData().getQuery() != null) {
|
||||||
// The client secret and source ID found here is identical to
|
// The client secret and source ID found here is identical to
|
||||||
@ -118,7 +118,7 @@ public class StripePaymentsPlugin extends CordovaPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onDestroy() {
|
public void onDestroy() {
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
mPaymentSession.onDestroy();
|
mPaymentSession.onDestroy();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user