add missing semicolon
This commit is contained in:
parent
b6498e3a7d
commit
97b4bdcb3c
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue