| Index: sky/sdk/lib/rendering/stack.dart
|
| diff --git a/sky/sdk/lib/rendering/stack.dart b/sky/sdk/lib/rendering/stack.dart
|
| index a3efa186e095e854537c9925bd22750ba3fa88c9..be73d6f1aa4e4dd071f53d1f2c63b2601fcd18c7 100644
|
| --- a/sky/sdk/lib/rendering/stack.dart
|
| +++ b/sky/sdk/lib/rendering/stack.dart
|
| @@ -35,8 +35,7 @@ class RenderStack extends RenderBox with ContainerRenderObjectMixin<RenderBox, S
|
| RenderStack({
|
| List<RenderBox> children
|
| }) {
|
| - if (children != null)
|
| - children.forEach((child) { add(child); });
|
| + addAll(children);
|
| }
|
|
|
| void setParentData(RenderBox child) {
|
|
|