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

SimpleTimeZone constructors don't throw NullPointerException

XMLWordPrintable



      Name: avC70361 Date: 07/03/98



        java.util.SimpleTimeZone constructors don't throw NullPointerException when
      their 'ID' parameter is null. Time zones with null ID are senseless but can cause
      throwing an unexpected NullPointerException when comparing zones, etc.

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

      public class NullIDTest {

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

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

      ---------The test output--------
      > java NullIDTest
      Failed: NullPointerException 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: