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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 681833003: Remove any unnecessary parens around expressions in interpolations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | pkg/analyzer/test/generated/all_the_rest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index fa89448ee3340ab2ed571d733aa66d0cccda5009..ab6bccded3eb3ef4735e26beabcf573beb58e6e0 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -9405,7 +9405,7 @@ class IncrementalAnalysisTask extends AnalysisTask {
Source get source => cache != null ? cache.source : null;
@override
- String get taskDescription => "incremental analysis ${(cache != null ? cache.source : "null")}";
+ String get taskDescription => "incremental analysis ${cache != null ? cache.source : "null"}";
@override
void internalPerform() {
« no previous file with comments | « no previous file | pkg/analyzer/test/generated/all_the_rest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698