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

@ -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);
}