(no commit message)
[utils] / support / general / src / test / java / org / wamblee / io / TestData.java
index 8430b0988407fa76f833d0a9782685d08044d6bf..7f72aad524d86c14f6177ce9fc56bd78937949d4 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.io;
 
-import junit.framework.Assert;
-
 import java.io.ByteArrayInputStream;
 import java.io.File;
-import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.io.InputStream;
-import java.io.OutputStream;
 
-import java.nio.MappedByteBuffer;
-import java.nio.channels.FileChannel;
+import junit.framework.Assert;
 
 /**
  * TestData provides a convenient interface for managing test output files.
@@ -34,7 +29,6 @@ import java.nio.channels.FileChannel;
  * @author Erik Brakkee
  */
 public final class TestData {
-    private Object testcase;
     private File root;
 
     /**
@@ -43,7 +37,6 @@ public final class TestData {
      * test.
      */
     public TestData(Object aTestcase) {
-        testcase = aTestcase;
         root = getTestRootDir(aTestcase);
         FileSystemUtils.createDir(root);
     }