Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4154525

SimpleTimeZone 11 args constructor and setDSTSavings works wrong

XMLWordPrintable

    • 1.2fcs
    • sparc
    • solaris_2.5
    • Verified



      Name: avC70361 Date: 07/03/98



        java.util.SimpleTimeZone 11 args constructor and setDSTSavings handle wrong
      cases when they are invoked with invalid DST offset: an int less than minimum
      or greater than maximum value of Calendar.DST_OFFSET. They don't throw
      IllegalArgumentException.

      Here is a test demonstrating the bug.
      ---------------IllegalDSTOffset.java-------
      import java.util.SimpleTimeZone;

      public class IllegalDSTOffsetTest {

        public static void main(String args[]) {
          SimpleTimeZone tz = new SimpleTimeZone(0, "stz");

          try {
            tz.setDSTSavings(Integer.MIN_VALUE);

            System.out.println("Failed: IllegalArgumentException is not thrown");
          } catch(IllegalArgumentException e) {
            System.out.println("Passed");
          }
        }
      }

      ---------The test output--------
      > java IllegalDSTOffsetTest
      Failed: IllegalArgumentException is not thrown

      ======================================================================

            aliusunw Alan Liu (Inactive)
            ovlasov Oleksandr Vlasov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: