Minor: Remove unnecessary continue

This commit is contained in:
Chinmay Garde 2016-01-14 15:29:57 -08:00
parent e98b7f4c48
commit 02f423f5d3

View File

@ -107,7 +107,6 @@ abstract class StartCommandBase extends FlutterCommand {
bool result = await device.startApp(package);
if (!result) {
logging.severe('Could not start \'${package.name}\' on \'${device.id}\'');
continue;
}
}
}