Skip to content

Commit cf4e594

Browse files
fbsource/aast_remove_unnecessary_unsafe_dereference.json Botfacebook-github-bot
authored andcommitted
fbsource//xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric:fabricAndroid
Reviewed By: sahiljain Differential Revision: D95033366
1 parent 8cbc4dc commit cf4e594

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/fabric/mounting/mountitems/PreAllocateViewMountItem.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ internal class PreAllocateViewMountItem(
5959
if (FabricUIManager.IS_DEVELOPMENT_ENVIRONMENT) {
6060
result
6161
.append(" props: ")
62-
.append(props?.toString() ?: "<null>")
62+
.append(props.toString() ?: "<null>")
6363
.append(" state: ")
6464
.append(stateWrapper?.toString() ?: "<null>")
6565
}

0 commit comments

Comments
 (0)