From 42417be496ed1bf8d79e7b9d9f6eaaff0d943ac9 Mon Sep 17 00:00:00 2001 From: Jesse Rosenstock Date: Sat, 31 Aug 2002 05:27:15 +0000 Subject: re PR libgcj/7785 (Calendar.getTimeInMillis/setTimeInMillis should be public) 2002-08-30 Jesse Rosenstock * java/util/Calendar.java (getTimeInMillis, getTimeInMillis): Now public, per 1.4 spec. Fixes PR libgcj/7785. From-SVN: r56696 --- libjava/java/util/Calendar.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libjava/java/util/Calendar.java') diff --git a/libjava/java/util/Calendar.java b/libjava/java/util/Calendar.java index 999f105..09e9f26 100644 --- a/libjava/java/util/Calendar.java +++ b/libjava/java/util/Calendar.java @@ -1,5 +1,5 @@ /* java.util.Calendar - Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -504,8 +504,9 @@ public abstract class Calendar implements Serializable, Cloneable /** * Returns the time represented by this Calendar. * @return the time in milliseconds since the epoch. + * @specnote This was made public in 1.4. */ - protected long getTimeInMillis() + public long getTimeInMillis() { if (!isTimeSet) computeTime(); @@ -516,8 +517,9 @@ public abstract class Calendar implements Serializable, Cloneable * Sets this Calendar's time to the given Time. All time fields * are invalidated by this method. * @param time the time in milliseconds since the epoch + * @specnote This was made public in 1.4. */ - protected void setTimeInMillis(long time) + public void setTimeInMillis(long time) { this.time = time; isTimeSet = true; -- cgit v1.1