(no commit message)
[utils] / support / test / org / wamblee / test / TestTransactionCallback.java
index fa07b698d9aeb872dbf4b7d7964b142b5087dde9..ff46779b0e4333b903066d4e2ba1ad9f326fbf4d 100644 (file)
@@ -1,21 +1,18 @@
-
 package org.wamblee.test;
 
 import java.util.Map;
 
-
 /**
- * Transaction callback for testing.
- * The test will fail if any type of exception is thrown.
+ * Transaction callback for testing. The test will fail if any type of exception
+ * is thrown.
  */
 public interface TestTransactionCallback {
     /**
      * Executes code within a transaction, causing the testcase to fail if any
      * type of exception is thrown.
-     *
-     * @return A map containg the resuls of the execution. This is
-     *  a convenient method of returning multiple results from
-     *  a call.
+     * 
+     * @return A map containg the resuls of the execution. This is a convenient
+     *         method of returning multiple results from a call.
      */
-    Map execute(  ) throws Exception;
+    Map execute() throws Exception;
 }