Skip to content

Commit b27a354

Browse files
lunaleapsfacebook-github-bot
authored andcommitted
fbsource//xplat/js/react-native-github/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/virtual/viewexperimental:viewexperimentalAndroid
Summary: Changelog: [Internal] - Remove unnecessary ?. in VirtualViewExperimental Differential Revision: D82426042
1 parent dba8dbd commit b27a354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/views/virtual/viewexperimental/ReactVirtualViewExperimental.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public class ReactVirtualViewExperimental(context: Context) :
211211
// If no ScrollView, or ScrollView has disabled removeClippedSubviews, use default behavior
212212
if (
213213
scrollView == null ||
214-
!((scrollView as ReactClippingViewGroup)?.removeClippedSubviews ?: false)
214+
!((scrollView as ReactClippingViewGroup).removeClippedSubviews ?: false)
215215
) {
216216
super.updateClippingRect(excludedViews)
217217
return

0 commit comments

Comments
 (0)