add missing semicolon

This commit is contained in:
Andrea Franz 2020-12-13 10:49:53 +01:00
parent b6498e3a7d
commit 97b4bdcb3c
No known key found for this signature in database
GPG Key ID: 4F0D2F2D9DE7F29D
1 changed files with 2 additions and 2 deletions

View File

@ -435,11 +435,11 @@ public class RNStatusKeycardModule extends ReactContextBaseJavaModule implements
// These two methods below are a nop on Android since NFC is always listening, they are needed in iOS to show the NFC dialog
@ReactMethod
public void startNFC(final Promise promise) {
promise.resolve(true)
promise.resolve(true);
}
@ReactMethod
public void stopNFC(String error, final Promise promise) {
promise.resolve(true)
promise.resolve(true);
}
}