Commit 90bdcef9 authored by Danny Tuppeny's avatar Danny Tuppeny Committed by Danny Tuppeny

Remove redundant lines from errors

parent da5a64ec
......@@ -45,8 +45,6 @@ class AndroidEmulator extends Emulator {
final RunResult launchResult =
await runAsync(<String>[getEmulatorPath(), '-avd', id]);
if (launchResult.exitCode != 0) {
printError(
'Error: emulator exited with exit code ${launchResult.exitCode}');
printError('$launchResult');
return false;
}
......
......@@ -41,8 +41,6 @@ class IOSEmulator extends Emulator {
final RunResult launchResult =
await runAsync(<String>['open', '-a', getSimulatorPath()]);
if (launchResult.exitCode != 0) {
printError(
'Error: iOS simulator failed to launch with exit code ${launchResult.exitCode}');
printError('$launchResult');
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment