File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
packages/react-reconciler/src Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -1118,7 +1118,6 @@ function detachFiber(fiber: Fiber) {
11181118 // itself will be GC:ed when the parent updates the next time.
11191119 fiber . return = null ;
11201120 fiber . child = null ;
1121- fiber . sibling = null ;
11221121 fiber . memoizedState = null ;
11231122 fiber . updateQueue = null ;
11241123 fiber . dependencies = null ;
@@ -1128,9 +1127,6 @@ function detachFiber(fiber: Fiber) {
11281127 fiber . pendingProps = null ;
11291128 fiber . memoizedProps = null ;
11301129 fiber . stateNode = null ;
1131- if ( __DEV__ ) {
1132- fiber . _debugOwner = null ;
1133- }
11341130}
11351131
11361132function emptyPortalContainer ( current : Fiber ) {
Original file line number Diff line number Diff line change @@ -1118,7 +1118,6 @@ function detachFiber(fiber: Fiber) {
11181118 // itself will be GC:ed when the parent updates the next time.
11191119 fiber . return = null ;
11201120 fiber . child = null ;
1121- fiber . sibling = null ;
11221121 fiber . memoizedState = null ;
11231122 fiber . updateQueue = null ;
11241123 fiber . dependencies = null ;
@@ -1128,9 +1127,6 @@ function detachFiber(fiber: Fiber) {
11281127 fiber . pendingProps = null ;
11291128 fiber . memoizedProps = null ;
11301129 fiber . stateNode = null ;
1131- if ( __DEV__ ) {
1132- fiber . _debugOwner = null ;
1133- }
11341130}
11351131
11361132function emptyPortalContainer ( current : Fiber ) {
You can’t perform that action at this time.
0 commit comments