Skip to content

Commit c603e55

Browse files
mdvaccafacebook-github-bot
authored andcommitted
Backout Force Diffing algorithm to insert views Bottom Up
Summary: This is a temporary backout of D14817454, to verify if this is related T45503571 Reviewed By: JoshuaGross Differential Revision: D15780018 fbshipit-source-id: 455034ce7b7096101db93a8604b77e1233db1137
1 parent a4acd88 commit c603e55

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ReactCommon/fabric/mounting/Differentiator.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,14 +283,14 @@ static void calculateShadowViewMutations(
283283
createMutations.begin(),
284284
createMutations.end(),
285285
std::back_inserter(mutations));
286-
std::move(
287-
downwardMutations.begin(),
288-
downwardMutations.end(),
289-
std::back_inserter(mutations));
290286
std::move(
291287
insertMutations.begin(),
292288
insertMutations.end(),
293289
std::back_inserter(mutations));
290+
std::move(
291+
downwardMutations.begin(),
292+
downwardMutations.end(),
293+
std::back_inserter(mutations));
294294
}
295295

296296
ShadowViewMutation::List calculateShadowViewMutations(

0 commit comments

Comments
 (0)