(no commit message)
[utils] / support / test / org / wamblee / test / TestTransactionCallbackWithoutResult.java
index 05a23573961ee592300693470942b7a2a412df49..84e213f5bcf39b371a4bc9c4570f0b04759d2b06 100644 (file)
@@ -1,16 +1,14 @@
-
 package org.wamblee.test;
 
-
 /**
- * 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 TestTransactionCallbackWithoutResult {
     /**
      * Executes code within a transaction, causing the testcase to fail if any
      * type of exception is thrown.
-     *
+     * 
      */
-    void execute(  ) throws Exception;
+    void execute() throws Exception;
 }