minor
authorErik Brakkee <erik@brakkee.org>
Sun, 7 Aug 2011 20:52:54 +0000 (22:52 +0200)
committerErik Brakkee <erik@brakkee.org>
Sun, 7 Aug 2011 20:52:54 +0000 (22:52 +0200)
impl/src/main/java/org/wamblee/xmlrouter/impl/ConfigImpl.java

index 0324e78f8353b1dd58598e49b66ecca786b6552d..75b8222c04363038f3ed289eb5386a9c7843aded 100644 (file)
@@ -26,9 +26,6 @@ import org.wamblee.xmlrouter.common.Id;
 import org.wamblee.xmlrouter.config.Config;
 import org.wamblee.xmlrouter.config.Identifiable;
 
-// TODO think real hard about the prefixing. We want a consistent view for clients. 
-// perhaps only provide a method to add items and hide all access to the ids. 
-
 /**
  * Default implementation of the {@link Config} interface.
  * 
@@ -48,7 +45,7 @@ public abstract class ConfigImpl<T extends Identifiable<T>> implements
      * Constructs the object.
      */
     public ConfigImpl(Id<Config> aId) {
-        // TODO test for null.
+        notNull("id", aId);
         id = aId;
         registered = new ArrayList<T>();
     }