GregorianCalendar.java (getGregorianChange): Removed `date' argument.

* java/util/GregorianCalendar.java (getGregorianChange): Removed
	`date' argument.

From-SVN: r46423
This commit is contained in:
Tom Tromey 2001-10-23 04:16:13 +00:00 committed by Tom Tromey
parent 001d274051
commit 187e37f9a6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-10-22 Tom Tromey <tromey@redhat.com>
* java/util/GregorianCalendar.java (getGregorianChange): Removed
`date' argument.
2001-10-22 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* gnu/gcj/convert/JIS0208_to_Unicode.cc: Declare java_exceptions pragma.

View File

@ -175,7 +175,7 @@ public class GregorianCalendar extends Calendar
* Gets the date of the switch from Julian dates to Gregorian dates.
* @return the date of the change.
*/
public final Date getGregorianChange(Date date)
public final Date getGregorianChange()
{
return new Date(gregorianCutover);
}