🎨 Add proper indentation to the method

This commit is contained in:
Salma ElTarzi 2017-08-08 17:40:12 +02:00
parent 7e3d97af27
commit 718dfec51e

View File

@ -960,8 +960,8 @@ public class RNInstabugReactnativeModule extends ReactContextBaseJavaModule {
@Override
public void onSdkDismissed(DismissType issueState, Bug.Type bugType) {
WritableMap params = Arguments.createMap();
params.putString("issueState",issueState.toString());
params.putString("bugType",bugType.toString());
params.putString("issueState", issueState.toString());
params.putString("bugType", bugType.toString());
sendEvent(getReactApplicationContext(), "IBGpostInvocationHandler", params);
}
});