Return-Path: Delivered-To: apmail-incubator-geronimo-cvs-archive@www.apache.org Received: (qmail 15141 invoked from network); 10 Mar 2004 00:03:38 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 10 Mar 2004 00:03:38 -0000 Received: (qmail 97470 invoked by uid 500); 10 Mar 2004 00:03:23 -0000 Delivered-To: apmail-incubator-geronimo-cvs-archive@incubator.apache.org Received: (qmail 97444 invoked by uid 500); 10 Mar 2004 00:03:23 -0000 Mailing-List: contact geronimo-cvs-help@incubator.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: geronimo-dev@incubator.apache.org Delivered-To: mailing list geronimo-cvs@incubator.apache.org Received: (qmail 97426 invoked from network); 10 Mar 2004 00:03:23 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 10 Mar 2004 00:03:23 -0000 Received: (qmail 15123 invoked by uid 1751); 10 Mar 2004 00:03:36 -0000 Date: 10 Mar 2004 00:03:36 -0000 Message-ID: <20040310000336.15122.qmail@minotaur.apache.org> From: adc@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/modules/common/src/java/org/apache/geronimo/common Primitives.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N adc 2004/03/09 16:03:36 Modified: modules/common/src/java/org/apache/geronimo/common Primitives.java Log: [GERONIMO-159] [patch] Typo fixes in o.a.g.common.Primitives Thanks to Brian Deacon. Revision Changes Path 1.5 +3 -3 incubator-geronimo/modules/common/src/java/org/apache/geronimo/common/Primitives.java Index: Primitives.java =================================================================== RCS file: /home/cvs/incubator-geronimo/modules/common/src/java/org/apache/geronimo/common/Primitives.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- Primitives.java 25 Feb 2004 09:57:02 -0000 1.4 +++ Primitives.java 10 Mar 2004 00:03:36 -0000 1.5 @@ -37,7 +37,7 @@ } /** - * Test the equality of two doubles by converting their values into + * Test the equality of two floats by converting their values into * IEEE 754 floating-point "single precision" bit layouts. * * @param a Float to check equality with. @@ -119,7 +119,7 @@ { if (value > Integer.MAX_VALUE || value < Integer.MIN_VALUE) { throw new DataConversionException - ("Can not safly convert to int: " + value); + ("Can not safely convert to int: " + value); } return (int)value;