summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-03-09 11:31:56 +0100
committerGitHub <noreply@github.com>2020-03-09 11:31:56 +0100
commitee543253ec6ee09d4bfcf0261e3d804368cd8a94 (patch)
tree8b37a2b8ee04fae9a183033a8582b6aeb3313bea
parentda1f80c1f2d71aeaee9f57fd19fc2ea4f76c487d (diff)
parent7aa1c3e490375b9fe6b6187c33c0925a7354be97 (diff)
Merge pull request #36933 from m4gr3d/fix_godot_payment_init
Fix initialization of the GodotPayment plugin
-rw-r--r--platform/android/java/plugins/godotpayment/src/main/java/org/godotengine/godot/plugin/payment/GodotPayment.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/android/java/plugins/godotpayment/src/main/java/org/godotengine/godot/plugin/payment/GodotPayment.java b/platform/android/java/plugins/godotpayment/src/main/java/org/godotengine/godot/plugin/payment/GodotPayment.java
index 6317de9a6e..4a6b611c4d 100644
--- a/platform/android/java/plugins/godotpayment/src/main/java/org/godotengine/godot/plugin/payment/GodotPayment.java
+++ b/platform/android/java/plugins/godotpayment/src/main/java/org/godotengine/godot/plugin/payment/GodotPayment.java
@@ -55,7 +55,6 @@ public class GodotPayment extends GodotPlugin implements GodotPaymentInterface {
public GodotPayment(Godot godot) {
super(godot);
- onGLRegisterPluginWithGodotNative();
mPaymentManager = godot.getPaymentsManager();
mPaymentManager.setBaseSingleton(this);
}