You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2014/04/04 14:32:48 UTC

svn commit: r1584637 - /lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java

Author: dweiss
Date: Fri Apr  4 12:32:48 2014
New Revision: 1584637

URL: http://svn.apache.org/r1584637
Log:
Don't remove unzipped files automatically.

Modified:
    lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java

Modified: lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java?rev=1584637&r1=1584636&r2=1584637&view=diff
==============================================================================
--- lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java (original)
+++ lucene/dev/branches/solr5914/lucene/test-framework/src/java/org/apache/lucene/util/TestUtil.java Fri Apr  4 12:32:48 2014
@@ -137,13 +137,12 @@ public final class TestUtil {
   }
 
   /** 
-   * Convenience method: Unzip zipName + ".zip" into destDir, cleaning up 
+   * Convenience method unzipping zipName into destDir, cleaning up 
    * destDir first. 
    */
   public static void unzip(File zipName, File destDir) throws IOException {
     rm(destDir);
     destDir.mkdir();
-    maybeRemoveAfterSuite(destDir);
 
     ZipFile zipFile = new ZipFile(zipName);
     Enumeration<? extends ZipEntry> entries = zipFile.entries();