Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://nagoya.apache.org/jira/secure/ViewIssue.jspa?key=GERONIMO-159 Here is an overview of the issue: --------------------------------------------------------------------- Key: GERONIMO-159 Summary: [patch] Typo fixes in o.a.g.common.Primitives Type: Improvement Status: Unassigned Priority: Trivial Project: Apache Geronimo Components: common Assignee: Reporter: Brian Deacon Created: Sun, 7 Mar 2004 10:13 AM Updated: Sun, 7 Mar 2004 10:13 AM Description: Trivial verbage fixes. Index: modules/common/src/java/org/apache/geronimo/common/Primitives.java =================================================================== RCS file: /home/cvspublic/incubator-geronimo/modules/common/src/java/org/apache/geronimo/common/Primitives.java,v retrieving revision 1.4 diff -u -r1.4 Primitives.java --- modules/common/src/java/org/apache/geronimo/common/Primitives.java 25 Feb 2004 09:57:02 -0000 1.4 +++ modules/common/src/java/org/apache/geronimo/common/Primitives.java 7 Mar 2004 03:58:14 -0000 @@ -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; --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://nagoya.apache.org/jira/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira
