From bf34450953eb08ee806324b2bd44fecd9ca23399 Mon Sep 17 00:00:00 2001 From: asiva Date: Wed, 26 Feb 2020 03:26:25 +0000 Subject: [PATCH] Remove workaround introduced for issue #40486, that issue appears to be fixed now. Closes https://github.com/dart-lang/sdk/issues/40486 Change-Id: I6c7901a45caf87c0766750f403bb9cf6a127609b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137246 Commit-Queue: Siva Annamalai Reviewed-by: Alexander Markov --- utils/pub/BUILD.gn | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/utils/pub/BUILD.gn b/utils/pub/BUILD.gn index 6459f59f3a0..de93998fec7 100644 --- a/utils/pub/BUILD.gn +++ b/utils/pub/BUILD.gn @@ -7,9 +7,5 @@ import("../application_snapshot.gni") application_snapshot("pub") { main_dart = "../../third_party/pkg/pub/bin/pub.dart" - # TODO (40486) : Remove the trace option once this issue is fixed. - training_args = [ - "--trace", - "--help", - ] + training_args = [ "--help" ] }