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

SimpleTimeZone ctors and methods handle invalid arguments incorrectly

XMLWordPrintable

    • 1.1.8
    • sparc
    • solaris_2.5
    • Verified



        Name: avC70361 Date: 07/03/98



          java.util.SimpleTimeZone constructors, setStartRule and setEndRule methods
        works wrong when invalid values of month, day, day of a week and time fields
        are passed to them. They don't throw IllegalArgumentException for such
        parameters.

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

        public class IllegalRuleTest {

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

            try {
              tz.setStartRule(Integer.MIN_VALUE, 1, 1, 0);

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

        ---------The test output--------
        > java IllegalRuleTest
        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: