From 235ccc9374e8e4a03b0de10611003d7c03cfce2d Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Wed, 8 Aug 2018 20:18:27 +0000 Subject: [PATCH] Remove --checked from dart --help We no longer mention `--preview-dart-2`, we shouldn't mention `--checked` either. Change-Id: Ib878bf56c61f13f3ec6faacaa59ff9c7f307f7ba Reviewed-on: https://dart-review.googlesource.com/68840 Reviewed-by: Zach Anderson Commit-Queue: Nate Bosch --- runtime/bin/main_options.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/runtime/bin/main_options.cc b/runtime/bin/main_options.cc index 114d574b49b..f2e1e1f9eba 100644 --- a/runtime/bin/main_options.cc +++ b/runtime/bin/main_options.cc @@ -137,9 +137,6 @@ void Options::PrintUsage() { if (!Options::verbose_option()) { Log::PrintErr( "Common options:\n" -"--checked or -c\n" -" Insert runtime type checks and enable assertions (checked mode, not\n" -" compatible with --preview-dart-2).\n" "--enable-asserts\n" " Enable assert statements.\n" "--help or -h\n" @@ -171,9 +168,6 @@ void Options::PrintUsage() { } else { Log::PrintErr( "Supported options:\n" -"--checked or -c\n" -" Insert runtime type checks and enable assertions (checked mode, not\n" -" compatible with --preview-dart-2).\n" "--enable-asserts\n" " Enable assert statements.\n" "--help or -h\n"