Skip to content

Commit 8791b78

Browse files
committed
remove dead code
1 parent a30b386 commit 8791b78

File tree

1 file changed

+0
-38
lines changed

1 file changed

+0
-38
lines changed

lib/src/core.dart

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -2572,44 +2572,6 @@ class _ConstraintRenderBox extends RenderBox
25722572
element.laidOutLater = true;
25732573
continue;
25742574
}
2575-
2576-
if ((element.width < 0 && element.width != wrapContent) ||
2577-
(element.height < 0 && element.height != wrapContent)) {
2578-
if (element.leftConstraint != null) {
2579-
if (element.leftConstraint!.laidOutLater) {
2580-
element.laidOutLater = true;
2581-
continue;
2582-
}
2583-
}
2584-
2585-
if (element.topConstraint != null) {
2586-
if (element.topConstraint!.laidOutLater) {
2587-
element.laidOutLater = true;
2588-
continue;
2589-
}
2590-
}
2591-
2592-
if (element.rightConstraint != null) {
2593-
if (element.rightConstraint!.laidOutLater) {
2594-
element.laidOutLater = true;
2595-
continue;
2596-
}
2597-
}
2598-
2599-
if (element.bottomConstraint != null) {
2600-
if (element.bottomConstraint!.laidOutLater) {
2601-
element.laidOutLater = true;
2602-
continue;
2603-
}
2604-
}
2605-
2606-
if (element.baselineConstraint != null) {
2607-
if (element.baselineConstraint!.laidOutLater) {
2608-
element.laidOutLater = true;
2609-
continue;
2610-
}
2611-
}
2612-
}
26132575
}
26142576

26152577
BoxConstraints childConstraints =

0 commit comments

Comments
 (0)