* java/lang/Class.java (getPackage): Get package from
VMClassLoader if needed.
From-SVN: r108685
+2005-12-16 Tom Tromey <tromey@redhat.com>
+
+ * java/lang/Class.java (getPackage): Get package from
+ VMClassLoader if needed.
+
2005-12-16 Tom Tromey <tromey@redhat.com>
* testsuite/libjava.jacks/jacks.xfail
/**
* Returns the <code>Package</code> in which this class is defined
* Returns null when this information is not available from the
- * classloader of this class or when the classloader of this class
- * is null.
+ * classloader of this class.
*
* @return the package for this class, if it is available
* @since 1.2
ClassLoader cl = getClassLoader();
if (cl != null)
return cl.getPackage(getPackagePortion(getName()));
- return null;
+ else
+ return VMClassLoader.getPackage(getPackagePortion(getName()));
}
/**