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

Unified Diff: pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart

Issue 1838933003: Format code in analysis_server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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/plugin/edit/fix/fix_core.dart
diff --git a/pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart b/pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart
index 0ff626fa11893fadc03d9dd74357abe0864f1f31..aaf2c0056f8e68fa9e7cc428d66849473e6155ea 100644
--- a/pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart
+++ b/pkg/analysis_server/lib/plugin/edit/fix/fix_core.dart
@@ -27,9 +27,9 @@ class Fix {
* A comparator that can be used to sort fixes by their relevance. The most
* relevant fixes will be sorted before fixes with a lower relevance.
*/
- static final Comparator<Fix> SORT_BY_RELEVANCE = (Fix firstFix,
- Fix secondFix) =>
- firstFix.kind.relevance - secondFix.kind.relevance;
+ static final Comparator<Fix> SORT_BY_RELEVANCE =
+ (Fix firstFix, Fix secondFix) =>
+ firstFix.kind.relevance - secondFix.kind.relevance;
/**
* A description of the fix being proposed.

Powered by Google App Engine
This is Rietveld 408576698