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

Unified Diff: pkg/analysis_server/lib/src/services/completion/dart/combinator_contributor.dart

Issue 2924633002: Remove unused IdeOptions (Closed)
Patch Set: reverse default Created 3 years, 6 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/src/services/completion/dart/combinator_contributor.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/dart/combinator_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/combinator_contributor.dart
index 9ff3fa2ce2acd8beaa7b8426067a8ba38a0829aa..4d30f30eb5ff4d409f504ab034a541dac17614a5 100644
--- a/pkg/analysis_server/lib/src/services/completion/dart/combinator_contributor.dart
+++ b/pkg/analysis_server/lib/src/services/completion/dart/combinator_contributor.dart
@@ -30,12 +30,8 @@ class CombinatorContributor extends DartCompletionContributor {
LibraryElement library = directive.uriElement;
if (library != null) {
LibraryElementSuggestionBuilder builder =
- new LibraryElementSuggestionBuilder(
- request.libraryElement,
- CompletionSuggestionKind.IDENTIFIER,
- false,
- false,
- request.ideOptions);
+ new LibraryElementSuggestionBuilder(request.libraryElement,
+ CompletionSuggestionKind.IDENTIFIER, false, false);
library.visitChildren(builder);
return builder.suggestions;
}

Powered by Google App Engine
This is Rietveld 408576698