Author: sebb
Date: Sun Aug 21 01:56:51 2011
New Revision: 1159936

URL: http://svn.apache.org/viewvc?rev=1159936&view=rev
Log:
Javadoc

Modified:
    
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveInputStream.java
    
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveUtil.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=1159936&r1=1159935&r2=1159936&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
 Sun Aug 21 01:56:51 2011
@@ -70,7 +70,7 @@ public class DumpArchiveInputStream exte
      * Constructor.
      *
      * @param is
-     * @throws Exception
+     * @throws ArchiveException
      */
     public DumpArchiveInputStream(InputStream is) throws ArchiveException {
         this.raw = new TapeInputStream(new CountingStream(is));

Modified: 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveUtil.java
URL: 
http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveUtil.java?rev=1159936&r1=1159935&r2=1159936&view=diff
==============================================================================
--- 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveUtil.java
 (original)
+++ 
commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveUtil.java
 Sun Aug 21 01:56:51 2011
@@ -50,7 +50,6 @@ class DumpArchiveUtil {
      * Verify that the buffer contains a tape segment header.
      *
      * @param buffer
-     * @throws Exception
      */
     public static final boolean verify(byte[] buffer) {
         // verify magic. for now only accept NFS_MAGIC.
@@ -74,7 +73,6 @@ class DumpArchiveUtil {
      * Get the ino associated with this buffer.
      *
      * @param buffer
-     * @throws Exception
      */
     public static final int getIno(byte[] buffer) {
         return convert32(buffer, 20);


Reply via email to