| Index: sky/sdk/lib/framework/rendering/box.dart
|
| diff --git a/sky/sdk/lib/framework/rendering/box.dart b/sky/sdk/lib/framework/rendering/box.dart
|
| index 100219477b9e13b750ad812f20c20636e9065313..4575d0e7b99e9159c921af3948c98a60d5e50e20 100644
|
| --- a/sky/sdk/lib/framework/rendering/box.dart
|
| +++ b/sky/sdk/lib/framework/rendering/box.dart
|
| @@ -251,11 +251,7 @@ class RenderPadding extends RenderBox with RenderNodeWithChildMixin<RenderBox> {
|
|
|
| // This must be immutable, because we won't notice when it changes
|
| class BoxDecoration {
|
| - // TODO(mpcomplete): go through and change the users of this class to pass
|
| - // a Color object.
|
| - BoxDecoration({
|
| - backgroundColor
|
| - }) : backgroundColor = new sky.Color(backgroundColor);
|
| + const BoxDecoration({this.backgroundColor});
|
|
|
| final sky.Color backgroundColor;
|
| }
|
|
|