Merge pull request #2082 from chinmaygarde/lint_fix

Fix linter error regarding extra braces in string interpolation in devices.dart
This commit is contained in:
Chinmay Garde 2016-02-22 12:00:43 -08:00
commit 304694df6f

View File

@ -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');
}
}