Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6B6C511C6A for ; Sun, 12 May 2013 13:02:06 +0000 (UTC) Received: (qmail 42776 invoked by uid 500); 12 May 2013 13:02:05 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 42317 invoked by uid 500); 12 May 2013 13:01:59 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 42284 invoked by uid 99); 12 May 2013 13:01:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 May 2013 13:01:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 May 2013 13:01:55 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 94A8823888E4; Sun, 12 May 2013 13:01:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1481544 - /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java Date: Sun, 12 May 2013 13:01:34 -0000 To: commits@commons.apache.org From: damjan@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130512130134.94A8823888E4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: damjan Date: Sun May 12 13:01:34 2013 New Revision: 1481544 URL: http://svn.apache.org/r1481544 Log: Fix a Javadoc typo. Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java?rev=1481544&r1=1481543&r2=1481544&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java Sun May 12 13:01:34 2013 @@ -43,9 +43,9 @@ import org.apache.commons.compress.utils * compression) isn't. So the only archives * that can be read are the following: *
- * 7z -mhc=off -mx=0 [-ppassword] archive.7z files
- * 7z -mhc=off -m0=LZMA2 [-ppassword] archive.7z files
- * 7z -mhc=off -m0=BZIP2 [-ppassword] archive.7z files
+ * 7z a -mhc=off -mx=0 [-ppassword] archive.7z files
+ * 7z a -mhc=off -m0=LZMA2 [-ppassword] archive.7z files
+ * 7z a -mhc=off -m0=BZIP2 [-ppassword] archive.7z files
  * 
*

* The format is very Windows/Intel specific,