Author: bodewig
Date: Tue Aug 9 06:32:09 2011
New Revision: 1155225
URL: http://svn.apache.org/viewvc?rev=1155225&view=rev
Log:
didn't intend to commit this change, actually I didn't even intend to make it at all
Modified:
commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/AbstractTestCase.java
Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/AbstractTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/AbstractTestCase.java?rev=1155225&r1=1155224&r2=1155225&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/AbstractTestCase.java
(original)
+++ commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/AbstractTestCase.java
Tue Aug 9 06:32:09 2011
@@ -226,7 +226,7 @@ public abstract class AbstractTestCase e
OutputStream stream = null;
archiveList = new ArrayList<String>();
try {
- archive =File.createTempFile("empty", "." + archivename);
+ archive = File.createTempFile("empty", "." + archivename);
stream = new FileOutputStream(archive);
out = factory.createArchiveOutputStream(archivename, stream);
// Use short file name so does not cause problems for ar
|