You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/03/28 03:39:02 UTC

svn commit: r759421 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java

Author: sebb
Date: Sat Mar 28 02:39:01 2009
New Revision: 759421

URL: http://svn.apache.org/viewvc?rev=759421&view=rev
Log:
Not needed, as it duplicates the code in InputStream

Modified:
    commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java

Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java?rev=759421&r1=759420&r2=759421&view=diff
==============================================================================
--- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java (original)
+++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java Sat Mar 28 02:39:01 2009
@@ -399,12 +399,6 @@
         hasHitEOF = b;
     }
 
-
-    // used to be implemented via FilterInputStream
-    public int read(byte[] b) throws IOException {
-        return read(b, 0, b.length);
-    }
-
     // ArchiveInputStream
 
     public static boolean matches(byte[] signature, int length) {