summaryrefslogtreecommitdiffstats
path: root/libjava/java/util/SimpleTimeZone.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-21 12:49:39 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-21 12:49:39 +0000
commit0ad5c862aa270a90337ab56ba68996568d0ffc56 (patch)
tree4b43a46331e12a105229f3f655fc6b884df5dab6 /libjava/java/util/SimpleTimeZone.java
parentac2332a1b2069afb475bbcab80f227b240cf87af (diff)
downloadppe42-gcc-0ad5c862aa270a90337ab56ba68996568d0ffc56.tar.gz
ppe42-gcc-0ad5c862aa270a90337ab56ba68996568d0ffc56.zip
2003-06-21 Michael Koch <konqueror@gmx.de>
* java/util/SimpleTimeZone.java: Removed unneeded import, reformatting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68301 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util/SimpleTimeZone.java')
-rw-r--r--libjava/java/util/SimpleTimeZone.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/libjava/java/util/SimpleTimeZone.java b/libjava/java/util/SimpleTimeZone.java
index c2e2560fc78..e777fbd456a 100644
--- a/libjava/java/util/SimpleTimeZone.java
+++ b/libjava/java/util/SimpleTimeZone.java
@@ -38,8 +38,6 @@ exception statement from your version. */
package java.util;
-import java.text.DateFormatSymbols;
-
/**
* This class represents a simple time zone offset and handles
* daylight savings. It can only handle one daylight savings rule, so
@@ -88,6 +86,7 @@ public class SimpleTimeZone extends TimeZone
private static final int DOW_IN_MONTH_MODE = 2;
private static final int DOW_GE_DOM_MODE = 3;
private static final int DOW_LE_DOM_MODE = 4;
+
/**
* The mode of the start rule. This takes one of the following values:
* <dl>
@@ -488,7 +487,8 @@ public class SimpleTimeZone extends TimeZone
/**
* Returns the time zone offset to GMT in milliseconds, ignoring
* day light savings.
- * @return the time zone offset. */
+ * @return the time zone offset.
+ */
public int getRawOffset()
{
return rawOffset;
@@ -508,7 +508,8 @@ public class SimpleTimeZone extends TimeZone
* milliseconds with respect to standard time. Typically this
* is one hour, but for some time zones this may be half an our.
* @return the daylight savings offset in milliseconds.
- * @since JDK1.1.4?
+ *
+ * @since JDK1.2
*/
public int getDSTSavings()
{
OpenPOWER on IntegriCloud