removed the prefix argument from ConfigImpl.wrap().
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / RobustDocumentType.java
index 3f26f7b7c761fd57b2677ae9f5cd63f86d68286f..52244837dda20bcc70de5513c7c87be487a59857 100644 (file)
@@ -45,8 +45,8 @@ public class RobustDocumentType extends RobustIdentifiable<DocumentType>
      * @param aType
      *            Document type to wrap.
      */
-    public RobustDocumentType(String aPrefix, DocumentType aType) {
-        super(aPrefix, aType);
+    public RobustDocumentType(DocumentType aType) {
+        super(aType);
         type = aType;
     }