Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / spring / src / test / java / org / wamblee / test / spring / HibernateExporter.java
index ff5321ca39852da4092c6d972860525d07da696c..4d35124c2f0a88bf69d1716bb7295c2ca530ae9d 100644 (file)
@@ -22,35 +22,27 @@ import org.hibernate.tool.hbm2ddl.SchemaExport;
 import java.io.File;
 import java.io.IOException;
 
-
 /**
  * Exporting the hibernate mapping.
- *
+ * 
  * @author Erik Brakkee
  */
 public final class HibernateExporter {
-/**
+    /**
      * Disabled constructor.
-     *
+     * 
      */
     private HibernateExporter() {
         // 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(aArgs[1]);
+        String file = aArgs[0];
+        File dir = new File(aArgs[1]);
 
-        Configuration conf   = HibernateUtils.getConfiguration(dir);
+        Configuration conf = HibernateUtils.getConfiguration(dir);
 
-        SchemaExport  export = new SchemaExport(conf);
+        SchemaExport export = new SchemaExport(conf);
         export.setDelimiter(";");
         export.setOutputFile(file);
         export.create(true, false);