You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2009/03/29 22:01:54 UTC

svn commit: r759773 - /incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java

Author: jbellis
Date: Sun Mar 29 20:01:53 2009
New Revision: 759773

URL: http://svn.apache.org/viewvc?rev=759773&view=rev
Log:
fix bad merge

Modified:
    incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java

Modified: incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java
URL: http://svn.apache.org/viewvc/incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java?rev=759773&r1=759772&r2=759773&view=diff
==============================================================================
--- incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java (original)
+++ incubator/cassandra/trunk/test/org/apache/cassandra/ServerTest.java Sun Mar 29 20:01:53 2009
@@ -26,5 +26,10 @@
             {
                 throw new RuntimeException("No such directory: " + dir.getAbsolutePath());
             }
+            for (File f : dir.listFiles())
+            {
+                f.delete();
+            }
         }
     }
+}
\ No newline at end of file