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 3DBFC6D1B for ; Thu, 21 Jul 2011 08:39:01 +0000 (UTC) Received: (qmail 56428 invoked by uid 500); 21 Jul 2011 08:38:59 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 56234 invoked by uid 500); 21 Jul 2011 08:38:52 -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 56218 invoked by uid 99); 21 Jul 2011 08:38:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jul 2011 08:38:51 +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; Thu, 21 Jul 2011 08:38:50 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 11075238896F for ; Thu, 21 Jul 2011 08:38:30 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1149073 - in /commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip: ZipLong.java ZipShort.java Date: Thu, 21 Jul 2011 08:38:29 -0000 To: commits@commons.apache.org From: bodewig@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110721083830.11075238896F@eris.apache.org> Author: bodewig Date: Thu Jul 21 08:38:24 2011 New Revision: 1149073 URL: http://svn.apache.org/viewvc?rev=1149073&view=rev Log: spelling Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java?rev=1149073&r1=1149072&r2=1149073&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipLong.java Thu Jul 21 08:38:24 2011 @@ -113,7 +113,7 @@ public final class ZipLong implements Cl * Helper method to get the value as a Java long from four bytes starting at given array offset * @param bytes the array of bytes * @param offset the offset to start - * @return the correspondanding Java long value + * @return the corresponding Java long value */ public static long getValue(byte[] bytes, int offset) { long value = (bytes[offset + BYTE_3] << BYTE_3_SHIFT) & BYTE_3_MASK; @@ -126,7 +126,7 @@ public final class ZipLong implements Cl /** * Helper method to get the value as a Java long from a four-byte array * @param bytes the array of bytes - * @return the correspondanding Java long value + * @return the corresponding Java long value */ public static long getValue(byte[] bytes) { return getValue(bytes, 0); Modified: commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java?rev=1149073&r1=1149072&r2=1149073&view=diff ============================================================================== --- commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java (original) +++ commons/proper/compress/trunk/src/main/java/org/apache/commons/compress/archivers/zip/ZipShort.java Thu Jul 21 08:38:24 2011 @@ -89,7 +89,7 @@ public final class ZipShort implements C * Helper method to get the value as a java int from two bytes starting at given array offset * @param bytes the array of bytes * @param offset the offset to start - * @return the correspondanding java int value + * @return the corresponding java int value */ public static int getValue(byte[] bytes, int offset) { int value = (bytes[offset + 1] << BYTE_1_SHIFT) & BYTE_1_MASK; @@ -100,7 +100,7 @@ public final class ZipShort implements C /** * Helper method to get the value as a java int from a two-byte array * @param bytes the array of bytes - * @return the correspondanding java int value + * @return the corresponding java int value */ public static int getValue(byte[] bytes) { return getValue(bytes, 0);