From 177c0766f67885170d83ff367de93d811656e15d Mon Sep 17 00:00:00 2001 From: FMorschel <52160996+FMorschel@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:09:08 -0300 Subject: [PATCH] sorts lint producers because of last commit --- .../lib/src/services/correction/fix_internal.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart index 42b3c497d435..62dff190558d 100644 --- a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart +++ b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart @@ -751,15 +751,15 @@ final _builtInLintProducers = >{ }; final _builtInNonLintMultiProducers = { - CompileTimeErrorCode.AMBIGUOUS_IMPORT: [ - ImportAddHide.new, - ], CompileTimeErrorCode.AMBIGUOUS_EXTENSION_MEMBER_ACCESS_TWO: [ AddExtensionOverride.new, ], CompileTimeErrorCode.AMBIGUOUS_EXTENSION_MEMBER_ACCESS_THREE_OR_MORE: [ AddExtensionOverride.new, ], + CompileTimeErrorCode.AMBIGUOUS_IMPORT: [ + ImportAddHide.new, + ], CompileTimeErrorCode.ARGUMENT_TYPE_NOT_ASSIGNABLE: [ DataDriven.new, ],