Drop meaningless comments


git-svn-id: https://svn.apache.org/repos/asf/geronimo/gshell/trunk@721363 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java b/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java
index bfb3873..365625d 100644
--- a/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java
+++ b/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java
@@ -54,8 +54,6 @@
     public void registerCommand(final Command command) throws DuplicateCommandException {
         assert command != null;
 
-        // TODO: add a method on the CommandLocation to avoid using toString()
-
         String name = command.getLocation().getFullPath();
 
         log.debug("Registering command: {} -> {}", name, command);
@@ -72,8 +70,6 @@
     public void removeCommand(final Command command) throws NoSuchCommandException {
         assert command != null;
 
-        // TODO: add a method on the CommandLocation to avoid using toString()
-
         String name = command.getLocation().getFullPath();
 
         log.debug("Removing command: {}", name);
@@ -106,9 +102,4 @@
     public Collection<String> getCommandNames() {
         return Collections.unmodifiableSet(commands.keySet());
     }
-
-    //
-    // CommandLocationImpl
-    //
-
 }
\ No newline at end of file