| Index: pkg/analysis_server/lib/src/services/completion/imported_reference_contributor.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/completion/imported_reference_contributor.dart b/pkg/analysis_server/lib/src/services/completion/imported_reference_contributor.dart
|
| index b283ce9adae57f6f5c58390807fe9caf1527e666..f2a9cfa55ef5ca48ee83db08a506eb8fb29e1e55 100644
|
| --- a/pkg/analysis_server/lib/src/services/completion/imported_reference_contributor.dart
|
| +++ b/pkg/analysis_server/lib/src/services/completion/imported_reference_contributor.dart
|
| @@ -143,7 +143,6 @@ class _ImportedSuggestionBuilder extends ElementSuggestionBuilder
|
| }
|
| DartCompletionCache cache = request.cache;
|
| _addFilteredSuggestions(filterText, cache.importedConstructorSuggestions);
|
| - _addFilteredSuggestions(filterText, cache.libraryPrefixSuggestions);
|
| }
|
|
|
| /**
|
| @@ -258,7 +257,6 @@ class _ImportedSuggestionBuilder extends ElementSuggestionBuilder
|
| DartCompletionCache cache = request.cache;
|
| if (optype.includeTypeNameSuggestions) {
|
| _addFilteredSuggestions(filterText, cache.importedTypeSuggestions);
|
| - _addFilteredSuggestions(filterText, cache.libraryPrefixSuggestions);
|
| }
|
| if (optype.includeReturnValueSuggestions) {
|
| _addFilteredSuggestions(filterText, cache.otherImportedSuggestions);
|
|
|