From f1341a25cb1b0c41e6d2629e766ffd8f88388f2f Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Tue, 1 Mar 2016 13:52:13 -0800 Subject: [PATCH] Cosmetics. --- .../org/eclipse/cdt/core/dom/ast/IASTCompletionNode.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTCompletionNode.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTCompletionNode.java index 7ad8b565ab5..237b49d38ee 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTCompletionNode.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTCompletionNode.java @@ -35,23 +35,16 @@ public interface IASTCompletionNode { /** * Returns the length of the completion point. - * - * @return length of completion token */ public int getLength(); /** * Returns a list of names that fit in this context. - * - * @return array of IASTName's */ public IASTName[] getNames(); /** - * Returns the translation unit for this completion - * - * @return the translation unit + * Returns the translation unit for this completion. */ public IASTTranslationUnit getTranslationUnit(); - }