Author: sebb
Date: Mon Mar 30 17:18:59 2009
New Revision: 760054
URL: http://svn.apache.org/viewvc?rev=760054&view=rev
Log:
Remove methods already provided by superclass
Modified:
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java
Modified:
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java
URL:
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java?rev=760054&r1=760053&r2=760054&view=diff
==============================================================================
---
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java
(original)
+++
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ar/ArArchiveOutputStream.java
Mon Mar 30 17:18:59 2009
@@ -145,21 +145,11 @@
return offset;
}
- public void write(int b) throws IOException {
- out.write(b);
- entryOffset++;
- }
-
public void write(byte[] b, int off, int len) throws IOException {
out.write(b, off, len);
entryOffset += len;
}
- public void write(byte[] b) throws IOException {
- out.write(b);
- entryOffset += b.length;
- }
-
public void close() throws IOException {
closeArchiveEntry();
out.close();