From commits-return-26289-apmail-commons-commits-archive=commons.apache.org@commons.apache.org Sat Mar 24 06:02:14 2012 Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E738E9528 for ; Sat, 24 Mar 2012 06:02:13 +0000 (UTC) Received: (qmail 77817 invoked by uid 500); 24 Mar 2012 06:02:12 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 77752 invoked by uid 500); 24 Mar 2012 06:02:12 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 77733 invoked by uid 99); 24 Mar 2012 06:02:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Mar 2012 06:02:12 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 24 Mar 2012 06:02:11 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 110952388865 for ; Sat, 24 Mar 2012 06:01:51 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1304716 - /commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java Date: Sat, 24 Mar 2012 06:01:50 -0000 To: commits@commons.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120324060151.110952388865@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bodewig Date: Sat Mar 24 06:01:50 2012 New Revision: 1304716 URL: http://svn.apache.org/viewvc?rev=1304716&view=rev Log: forgot to remove debug code Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java?rev=1304716&r1=1304715&r2=1304716&view=diff ============================================================================== --- commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java (original) +++ commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStreamTest.java Sat Mar 24 06:01:50 2012 @@ -288,9 +288,6 @@ public class TarArchiveOutputStreamTest byte[] data = bos.toByteArray(); assertEquals("11 path=" + n + "\n", new String(data, 512, 11, "UTF-8")); - FileOutputStream fos = new FileOutputStream("/tmp/x"); - fos.write(data); - fos.close(); TarArchiveInputStream tin = new TarArchiveInputStream(new ByteArrayInputStream(data)); TarArchiveEntry e = tin.getNextTarEntry();