From: Michael Koch Date: Mon, 19 May 2003 09:14:57 +0000 (+0000) Subject: 2003-05-19 Michael Koch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=336931c1759741fd21c117a87c227017811fca58;p=gcc.git 2003-05-19 Michael Koch * java/util/Calendar.java (get): Not final anymore since JDK 1.4 (set): Likewise. From-SVN: r66956 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index a620831f832..459ef17af6a 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2003-05-19 Michael Koch + + * java/util/Calendar.java + (get): Not final anymore since JDK 1.4 + (set): Likewise. + 2003-05-19 Michael Koch * java/text/CollationKey.java: diff --git a/libjava/java/util/Calendar.java b/libjava/java/util/Calendar.java index 09e9f2673a5..9a4e21f69de 100644 --- a/libjava/java/util/Calendar.java +++ b/libjava/java/util/Calendar.java @@ -531,8 +531,10 @@ public abstract class Calendar implements Serializable, Cloneable * if they are invalid. * @param field the time field. One of the time field constants. * @return the value of the specified field + * + * @specnote Not final since JDK 1.4 */ - public final int get(int field) + public int get(int field) { // If the requested field is invalid, force all fields to be recomputed. if (!isSet[field]) @@ -558,8 +560,10 @@ public abstract class Calendar implements Serializable, Cloneable * the time in milliseconds. * @param field the time field. One of the time field constants * @param value the value to be set. + * + * @specnote Not final since JDK 1.4 */ - public final void set(int field, int value) + public void set(int field, int value) { isTimeSet = false; fields[field] = value;