You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nestedscrollwebview/src/main/java/com/telefonica/nestedscrollwebview/helper/CoordinatorLayoutChildHelper.kt
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,15 +17,17 @@ class CoordinatorLayoutChildHelper {
17
17
coordinatorChildView =null
18
18
coordinatorParentView =null
19
19
20
-
var childView:View= view
21
-
while (childView.parent isView&& coordinatorParentView ==null) {
20
+
var childView:View?= view
21
+
while (childView?.parent isView&& coordinatorParentView ==null) {
0 commit comments