(no commit message)
authorErik Brakkee <erik@brakkee.org>
Mon, 26 Apr 2010 20:14:34 +0000 (20:14 +0000)
committerErik Brakkee <erik@brakkee.org>
Mon, 26 Apr 2010 20:14:34 +0000 (20:14 +0000)
test/enterprise/src/main/java/org/wamblee/support/persistence/DatabaseUtils.java

index 5f26bd8e0dceab7d128684399eacb51727d950bc..1b300433d8bc49ca268dc964d5db902b28e1231f 100644 (file)
@@ -90,7 +90,7 @@ public class DatabaseUtils {
         final String[] tables = getTableNames(aTables);
         executeInTransaction(new JdbcUnitOfWork<Void>() {
             public Void execute(Connection aConnection) throws Exception {
-                for (int i = tables.length - 1; i >= 0; i--) {
+                for (int i = tables.length-1; i >= 0; i--) {
                     aOperation.execute(tables[i]);
                 }
                 return null;