Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions android/src/main/java/com/rnfs/RNFSManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import android.os.Environment;
import android.os.StatFs;
import android.provider.MediaStore;
import android.support.annotation.Nullable;
import android.util.Base64;
import android.util.SparseArray;
import android.media.MediaScannerConnection;
Expand Down Expand Up @@ -682,7 +681,7 @@ public void mkdir(String filepath, ReadableMap options, Promise promise) {
}
}

private void sendEvent(ReactContext reactContext, String eventName, @Nullable WritableMap params) {
private void sendEvent(ReactContext reactContext, String eventName, WritableMap params) {
reactContext
.getJSModule(RCTNativeAppEventEmitter.class)
.emit(eventName, params);
Expand Down