From daae863aab90a5463e0a7adf42744f4f2cf74477 Mon Sep 17 00:00:00 2001 From: Hixie Date: Thu, 4 Jun 2015 16:17:20 -0700 Subject: [PATCH] Rename "BorderSide.None" to "BorderSide.none", since it's a constant, and change the sky.Size.infinite() constructor to a constant. R=abarth@chromium.org Review URL: https://codereview.chromium.org/1158263005 --- engine/src/flutter/tests/raw/render_flex.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/tests/raw/render_flex.dart b/engine/src/flutter/tests/raw/render_flex.dart index 61bb99dc47f..85be7951323 100644 --- a/engine/src/flutter/tests/raw/render_flex.dart +++ b/engine/src/flutter/tests/raw/render_flex.dart @@ -15,7 +15,7 @@ class RenderSolidColor extends RenderDecoratedBox { final sky.Size desiredSize; final sky.Color backgroundColor; - RenderSolidColor(sky.Color backgroundColor, { this.desiredSize: const sky.Size.infinite() }) + RenderSolidColor(sky.Color backgroundColor, { this.desiredSize: sky.Size.infinite }) : backgroundColor = backgroundColor, super(decoration: new BoxDecoration(backgroundColor: backgroundColor)) { }