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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java

Issue 440683005: remove unused search and adapter classes and methods (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java
index 7c81517c86e5a58aa93ef8717e4af0b9307425bf..82c65bbca87355322e66a790d60a6fa25821621e 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/text/dart/CompletionProposalCollector.java
@@ -157,24 +157,6 @@ public class CompletionProposalCollector extends CompletionRequestor {
this(cu == null ? null : cu.getDartProject(), cu, ignoreAll); // TODO Remove getDartProject()
}
- /**
- * Creates a new instance ready to collect proposals. Note that proposals for anonymous types and
- * method declarations are not created when using this constructor, as those need to know the
- * compilation unit that they are created on. Use
- * {@link CompletionProposalCollector#CompletionProposalCollector(CompilationUnit)} instead to get
- * all proposals.
- * <p>
- * If the passed Dart project is <code>null</code>, no Dart doc will be available as
- * {@link org.eclipse.jface.text.contentassist.ICompletionProposal#getAdditionalProposalInfo()
- * additional info} on the created (e.g. method and type) proposals.
- * </p>
- *
- * @param project the project that the result collector will operate on, or <code>null</code>
- */
- public CompletionProposalCollector(DartProject project) {
- this(project, null, false);
- }
-
private CompletionProposalCollector(DartProject project, CompilationUnit cu, boolean ignoreAll) {
super(ignoreAll);
fDartProject = project;

Powered by Google App Engine
This is Rietveld 408576698