Author: sebb Date: Tue Apr 14 10:33:55 2009 New Revision: 764732 URL: http://svn.apache.org/viewvc?rev=764732&view=rev Log: Javadoc fixes
Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/changes/ChangeSet.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java?rev=764732&r1=764731&r2=764732&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/ArchiveException.java Tue Apr 14 10:33:55 2009 @@ -45,8 +45,8 @@ * @param cause * the cause */ - public ArchiveException(String message, Exception e) { + public ArchiveException(String message, Exception cause) { super(message); - this.initCause(e); + this.initCause(cause); } } Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/changes/ChangeSet.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/changes/ChangeSet.java?rev=764732&r1=764731&r2=764732&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/changes/ChangeSet.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/changes/ChangeSet.java Tue Apr 14 10:33:55 2009 @@ -39,7 +39,7 @@ /** * Deletes the file with the filename from the archive. * - * @param pFilename + * @param filename * the filename of the file to delete */ public void delete(final String filename) { @@ -49,7 +49,7 @@ /** * Deletes the file with the filename from the archive. * - * @param pFilename + * @param dirName * the filename of the file to delete */ public void deleteDir(final String dirName) {