Skip to content

Commit b703f93

Browse files
GijsWeteringsfacebook-github-bot
authored andcommitted
Apply Nullsafe FIXMEs for xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java (#50059)
Summary: Note this diff is only adding FIXMEs that will be removed in the next diff. This diff exists to make the next diff easily reviewable Changelog: [Internal] Reviewed By: mdvacca Differential Revision: D71126395
1 parent d7013a0 commit b703f93

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/devsupport/DevServerHelper.java

+2
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ protected Void doInBackground(Void... params) {
208208

209209
mInspectorPackagerConnection =
210210
new CxxInspectorPackagerConnection(
211+
// NULLSAFE_FIXME[Parameter Not Nullable]
211212
getInspectorDeviceUrl(), metadata.get("deviceName"), mPackageName);
212213
mInspectorPackagerConnection.connect();
213214
return null;
@@ -452,6 +453,7 @@ public String getSourceUrl(String mainModuleName) {
452453
}
453454

454455
try (Sink output = Okio.sink(outputFile)) {
456+
// NULLSAFE_FIXME[Nullable Dereference]
455457
Okio.buffer(response.body().source()).readAll(output);
456458
}
457459

0 commit comments

Comments
 (0)