SimpleTimeZone.java: Removed unneeded import, reformatting.
authorMichael Koch <konqueror@gmx.de>
Sat, 21 Jun 2003 12:49:39 +0000 (12:49 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Sat, 21 Jun 2003 12:49:39 +0000 (12:49 +0000)
2003-06-21  Michael Koch  <konqueror@gmx.de>

* java/util/SimpleTimeZone.java:
Removed unneeded import, reformatting.

From-SVN: r68301

libjava/ChangeLog
libjava/java/util/SimpleTimeZone.java

index 2c847901c3013f268e7038c23452043d1f139099..6a4e9f986725877e2e51fa7efa5ea6577925b2ca 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-21  Michael Koch  <konqueror@gmx.de>
+
+       * java/util/SimpleTimeZone.java:
+       Removed unneeded import, reformatting.
+
 2003-06-21  Michael Koch  <konqueror@gmx.de>
 
        * java/text/DateFormat.java,
index c2e2560fc7803d0d1c144c2b7ef2701dfff5193f..e777fbd456aa6b283593a3811e4377b1d6bcaa0e 100644 (file)
@@ -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()
   {