Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Unified Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 2713053002: Remove the --no-error-notification flag. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/server/driver.dart
diff --git a/pkg/analysis_server/lib/src/server/driver.dart b/pkg/analysis_server/lib/src/server/driver.dart
index bc6baf28810f6b42d6a06db90e8fa9daa2b57678..183b6ffc5a394dfca18fb794569ffae00c7a1155 100644
--- a/pkg/analysis_server/lib/src/server/driver.dart
+++ b/pkg/analysis_server/lib/src/server/driver.dart
@@ -277,11 +277,6 @@ class Driver implements ServerStarter {
static const String NEW_ANALYSIS_DRIVER_LOG = 'new-analysis-driver-log';
/**
- * The name of the flag used to disable error notifications.
- */
- static const String NO_ERROR_NOTIFICATION = "no-error-notification";
-
- /**
* The name of the flag used to disable the index.
*/
static const String NO_INDEX = "no-index";
@@ -393,7 +388,6 @@ class Driver implements ServerStarter {
!results[DISABLE_NEW_ANALYSIS_DRIVER];
analysisServerOptions.finerGrainedInvalidation =
results[FINER_GRAINED_INVALIDATION];
- analysisServerOptions.noErrorNotification = results[NO_ERROR_NOTIFICATION];
analysisServerOptions.noIndex = results[NO_INDEX];
analysisServerOptions.useAnalysisHighlight2 =
results[USE_ANALISYS_HIGHLIGHT2];
@@ -569,10 +563,6 @@ class Driver implements ServerStarter {
" status and performance information");
parser.addOption(INTERNAL_DELAY_FREQUENCY);
parser.addOption(SDK_OPTION, help: "[path] the path to the sdk");
- parser.addFlag(NO_ERROR_NOTIFICATION,
- help: "disable sending all analysis error notifications to the server",
- defaultsTo: false,
- negatable: false);
parser.addFlag(NO_INDEX,
help: "disable indexing sources", defaultsTo: false, negatable: false);
parser.addFlag(USE_ANALISYS_HIGHLIGHT2,
« no previous file with comments | « pkg/analysis_server/lib/src/analysis_server.dart ('k') | pkg/analysis_server/test/integration/analysis/error_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698