Skip to content

Commit

Permalink
Removing unnecessary Nullable code. In preparation for androidx.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alistair Nelson committed Aug 2, 2019
1 parent 8378206 commit a19af8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 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,7 @@
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 +682,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

0 comments on commit a19af8c

Please sign in to comment.