From d299b05ab391727a68f3a912b04cd8e9cf9cb69d Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Mon, 22 Feb 2016 11:51:35 -0800 Subject: [PATCH] Fix linter error regarding extra braces in string interpolation in devices.dart --- packages/flutter_tools/lib/src/commands/devices.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_tools/lib/src/commands/devices.dart b/packages/flutter_tools/lib/src/commands/devices.dart index 9a8bd992a65..3a6ebd6735b 100644 --- a/packages/flutter_tools/lib/src/commands/devices.dart +++ b/packages/flutter_tools/lib/src/commands/devices.dart @@ -31,7 +31,7 @@ class DevicesCommand extends FlutterCommand { for (Device device in devices) { String supportIndicator = device.isSupported() ? '' : '- unsupported'; - printStatus('${device.name} (${device.id}) ${supportIndicator}'); + printStatus('${device.name} (${device.id}) $supportIndicator'); } }