NumberFormat.java: Fix spelling of setCurrency method.
2004-03-26 Peter Moon <peterm@miraculum.com> * java/text/NumberFormat.java: Fix spelling of setCurrency method. From-SVN: r79994
This commit is contained in:
parent
9b5c46c201
commit
99b432390e
@ -1,3 +1,8 @@
|
||||
2004-03-26 Peter Moon <peterm@miraculum.com>
|
||||
|
||||
* java/text/NumberFormat.java: Fix spelling of setCurrency
|
||||
method.
|
||||
|
||||
2004-03-21 Anthony Green <green@redhat.com>
|
||||
|
||||
* java/lang/natClass.cc (getClassLoader): Circumvent infinite
|
||||
@ -927,6 +932,7 @@
|
||||
(setDaemon): Reworked.
|
||||
* java/lang/natThread.cc
|
||||
(destroy): Removed.
|
||||
|
||||
2004-03-08 Anthony Green <green@redhat.com>
|
||||
|
||||
* Makefile.am: Build property resource files into libgcj.
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* NumberFormat.java -- Formats and parses numbers
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
@ -794,7 +794,7 @@ public abstract class NumberFormat extends Format implements Cloneable
|
||||
*
|
||||
* @since 1.4
|
||||
*/
|
||||
public void setCurreny(Currency currency)
|
||||
public void setCurrency(Currency currency)
|
||||
{
|
||||
if (currency == null)
|
||||
throw new NullPointerException("currency may not be null");
|
||||
|
Loading…
Reference in New Issue
Block a user