Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / spring / src / test / java / org / wamblee / test / spring / TestTransactionCallback.java
index 7a2891bd2b675b337811820c8e2ba97608dc8539..0a26c8ac6c7db0520b4ae8e846067fec4f57568d 100644 (file)
@@ -17,22 +17,20 @@ package org.wamblee.test.spring;
 
 import java.util.Map;
 
-
 /**
  * Transaction callback for testing. The test will fail if any type of exception
  * is thrown.
- *
+ * 
  * @author Erik Brakkee
  */
 public interface TestTransactionCallback {
     /**
-     * Executes code within a transaction, causing the testcase to fail
-     * if any type of exception is thrown.
-     *
+     * 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.
-     *
-     * @throws Exception DOCUMENT ME!
+     * 
      */
     Map execute() throws Exception;
 }