From jdo-commits-return-1084-apmail-db-jdo-commits-archive=www.apache.org@db.apache.org Thu Nov 03 20:47:08 2005 Return-Path: Delivered-To: apmail-db-jdo-commits-archive@www.apache.org Received: (qmail 42953 invoked from network); 3 Nov 2005 20:47:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Nov 2005 20:47:08 -0000 Received: (qmail 430 invoked by uid 500); 3 Nov 2005 20:47:08 -0000 Mailing-List: contact jdo-commits-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jdo-dev@db.apache.org Delivered-To: mailing list jdo-commits@db.apache.org Received: (qmail 419 invoked by uid 99); 3 Nov 2005 20:47:07 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 03 Nov 2005 12:47:07 -0800 Received: (qmail 42831 invoked by uid 65534); 3 Nov 2005 20:46:47 -0000 Message-ID: <20051103204647.42828.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: svn commit: r330628 - in /incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer: ClassFileEnhancerHelper.java core/Augmenter.java Date: Thu, 03 Nov 2005 20:46:47 -0000 To: jdo-commits@db.apache.org From: mzaun@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mzaun Date: Thu Nov 3 12:46:29 2005 New Revision: 330628 URL: http://svn.apache.org/viewcvs?rev=330628&view=rev Log: fixing two javac warnings 'unmappable character for encoding ASCII' Modified: incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/ClassFileEnhancerHelper.java incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/core/Augmenter.java Modified: incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/ClassFileEnhancerHelper.java URL: http://svn.apache.org/viewcvs/incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/ClassFileEnhancerHelper.java?rev=330628&r1=330627&r2=330628&view=diff ============================================================================== --- incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/ClassFileEnhancerHelper.java (original) +++ incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/ClassFileEnhancerHelper.java Thu Nov 3 12:46:29 2005 @@ -60,7 +60,7 @@ /** * Enhances a zip file. The zip file is given as a uip input stream. * It's entries are read and - if necessary - individually enhanced. - * The output stream has the same compressíon (if any) as the input + * The output stream has the same compression (if any) as the input * stream. * * @param enhancer The enhancer. Modified: incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/core/Augmenter.java URL: http://svn.apache.org/viewcvs/incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/core/Augmenter.java?rev=330628&r1=330627&r2=330628&view=diff ============================================================================== --- incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/core/Augmenter.java (original) +++ incubator/jdo/trunk/ri11/src/java/org/apache/jdo/impl/enhancer/core/Augmenter.java Thu Nov 3 12:46:29 2005 @@ -68,7 +68,7 @@ // // 4.7.8 The LineNumberTable Attribute // The LineNumberTable attribute is an optional variable-length - // attribute in the attributes table of a Code (§4.7.3) + // attribute in the attributes table of a Code (4.7.3) // attribute. It may be used by debuggers to determine which // part of the Java virtual machine code array corresponds to a // given line number in the original source file. ... Furthermore,