Commit 187e37f9 by Tom Tromey Committed by Tom Tromey

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

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

From-SVN: r46423
parent 001d2740
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> 2001-10-22 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* gnu/gcj/convert/JIS0208_to_Unicode.cc: Declare java_exceptions pragma. * gnu/gcj/convert/JIS0208_to_Unicode.cc: Declare java_exceptions pragma.
......
...@@ -175,7 +175,7 @@ public class GregorianCalendar extends Calendar ...@@ -175,7 +175,7 @@ public class GregorianCalendar extends Calendar
* Gets the date of the switch from Julian dates to Gregorian dates. * Gets the date of the switch from Julian dates to Gregorian dates.
* @return the date of the change. * @return the date of the change.
*/ */
public final Date getGregorianChange(Date date) public final Date getGregorianChange()
{ {
return new Date(gregorianCutover); return new Date(gregorianCutover);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment