Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / test / java / org / wamblee / system / components / DatabaseComponentFactory.java
index 39a8fdaa06bc0a0358ab0588529b98846d04def0..45684102a721206ba944c66522aea17ee3bf1a3c 100644 (file)
@@ -19,25 +19,19 @@ import org.wamblee.support.persistence.DatabaseBuilder;
 
 import org.wamblee.system.container.Container;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
 */
+ */
 public class DatabaseComponentFactory {
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aContainer DOCUMENT ME!
-     */
     public static void addDatabaseConfig(Container aContainer) {
         try {
-            aContainer.addComponent(new DatabaseComponent("db",
-                    DatabaseBuilder.getDatabase()));
+            aContainer.addComponent(new DatabaseComponent("db", DatabaseBuilder
+                .getDatabase()));
         } catch (Exception e) {
-            throw new RuntimeException("Could not add database configuration", e);
+            throw new RuntimeException("Could not add database configuration",
+                e);
         }
     }
 }