Author: bodewig
Date: Mon Aug 22 05:26:12 2011
New Revision: 1160111
URL: http://svn.apache.org/viewvc?rev=1160111&view=rev
Log:
Add a getNextDumpEntry method to parallel what the other archivers do
Modified:
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java
Modified:
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java
URL:
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java?rev=1160111&r1=1160110&r2=1160111&view=diff
==============================================================================
---
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java
(original)
+++
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java
Mon Aug 22 05:26:12 2011
@@ -176,6 +176,13 @@ public class DumpArchiveInputStream exte
/**
* Read the next entry.
*/
+ public DumpArchiveEntry getNextDumpEntry() throws IOException {
+ return getNextEntry();
+ }
+
+ /**
+ * Read the next entry.
+ */
@Override
public DumpArchiveEntry getNextEntry() throws IOException {
DumpArchiveEntry entry = null;