Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / spring / src / test / java / org / wamblee / test / spring / HibernateUpdater.java
index cb78ea096afc4ef572408e19b07a6ccebdf4e683..4f55b723dc838d15484b16244f390cbd2e94841e 100644 (file)
@@ -22,35 +22,27 @@ import org.hibernate.tool.hbm2ddl.SchemaUpdate;
 import java.io.File;
 import java.io.IOException;
 
-
 /**
  * Exporting the hibernate mapping.
- *
+ * 
  * @author Erik Brakkee
  */
 public final class HibernateUpdater {
-/**
+    /**
      * Disabled constructor.
-     *
+     * 
      */
     private HibernateUpdater() {
         // Empty
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aArgs DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     public static void main(String[] aArgs) throws IOException {
-        String        file          = aArgs[0];
-        File          dir           = new File(file);
+        String file = aArgs[0];
+        File dir = new File(file);
 
-        Configuration conf          = HibernateUtils.getConfiguration(dir);
+        Configuration conf = HibernateUtils.getConfiguration(dir);
 
-        SchemaUpdate  lSchemaUpdate = new SchemaUpdate(conf);
+        SchemaUpdate lSchemaUpdate = new SchemaUpdate(conf);
         lSchemaUpdate.execute(true, true);
     }
 }