From 2144c7a6d36796d8a33756bdfacaf5b07be35aba Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Thu, 19 Apr 2018 08:25:08 +0100 Subject: [PATCH] Tweak text because we check IDs and names And it's not obvious to the use what the ID is. --- packages/flutter_tools/lib/src/commands/emulators.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter_tools/lib/src/commands/emulators.dart b/packages/flutter_tools/lib/src/commands/emulators.dart index addfe64219a..11463363326 100644 --- a/packages/flutter_tools/lib/src/commands/emulators.dart +++ b/packages/flutter_tools/lib/src/commands/emulators.dart @@ -46,9 +46,9 @@ class EmulatorsCommand extends FlutterCommand { await emulatorManager.getEmulatorsById(id).toList(); if (emulators.isEmpty) { - printStatus("No emulator found that matches the ID '$id'."); + printStatus("No emulator found that matches '$id'."); } else if (emulators.length > 1) { - printStatus("More than one emulator matches the ID '$id':\n"); + printStatus("More than one emulator matches '$id':\n"); Emulator.printEmulators(emulators); } else { emulators.first.launch();