You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2008/11/28 08:27:52 UTC

svn commit: r721363 - /geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java

Author: jdillon
Date: Thu Nov 27 23:27:52 2008
New Revision: 721363

URL: http://svn.apache.org/viewvc?rev=721363&view=rev
Log:
Drop meaningless comments

Modified:
    geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java

Modified: geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java?rev=721363&r1=721362&r2=721363&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java (original)
+++ geronimo/gshell/trunk/gshell-wisdom/gshell-wisdom-core/src/main/java/org/apache/geronimo/gshell/wisdom/registry/CommandRegistryImpl.java Thu Nov 27 23:27:52 2008
@@ -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