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

Introspector.getBeanInfoSearchPath() no longer works if search path is null

XMLWordPrintable

    • sparc
    • solaris_2.5



      Name: mgC56079 Date: 08/18/98



      This method used to return null if search path has been set to null in releases prior to 1.2fcs.
      However, this method now clones the search path which results in a NullPointerException.
      This causes jck1.1.6a, jck1.2beta4 regression:
      api/java_beans/Introspector/manual.html#SearchPath
      The easiest way to fix this is to return null if searchPath is null:
          public static synchronized String[] getBeanInfoSearchPath() {
      // Return a copy of the searchPath.
      String result[] = new String[searchPath.length];
              // *** BEGIN FIX
              if (searchPath==null)
                  return null;
              // *** END FIX
      for (int i = 0; i < searchPath.length; i++) {
      result[i] = searchPath[i];
      }
      return result;
          }

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

            mdavidsosunw Mark Davidson (Inactive)
            mgorshen Mikhail Gorshenev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: