| 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.
|
|
|