* Merge with HEAD
diff --git a/xotcl/plugins/org.eclipse.dltk.xotcl.core/src/org/eclipse/dltk/xotcl/internal/core/parser/XOTclCommandDetector.java b/xotcl/plugins/org.eclipse.dltk.xotcl.core/src/org/eclipse/dltk/xotcl/internal/core/parser/XOTclCommandDetector.java
index 85141ec..578bd24 100644
--- a/xotcl/plugins/org.eclipse.dltk.xotcl.core/src/org/eclipse/dltk/xotcl/internal/core/parser/XOTclCommandDetector.java
+++ b/xotcl/plugins/org.eclipse.dltk.xotcl.core/src/org/eclipse/dltk/xotcl/internal/core/parser/XOTclCommandDetector.java
@@ -48,7 +48,7 @@
 	public XOTclCommandDetector() {
 	}
 
-	public CommandInfo detectCommand(TclStatement statement, 
+	public CommandInfo detectCommand(TclStatement statement,
 			ModuleDeclaration module, ITclParser parser, ASTNode parent) {
 		if (statement.getCount() == 0) {
 			return null;
@@ -78,7 +78,6 @@
 		}
 		Expression commandName = statement.getAt(0);
 		if (!(commandName instanceof SimpleReference)) {
-			// TODO: Add handling of this.
 			return null;
 		}
 		String commandNameValue = ((SimpleReference) commandName).getName();