jdk/src/share/classes/java/lang/Package.java
changeset 3959 05a07c0a273b
parent 715 f16baef3a20e
child 5506 202f599c92aa
--- a/jdk/src/share/classes/java/lang/Package.java	Mon Oct 05 18:15:32 2009 -0700
+++ b/jdk/src/share/classes/java/lang/Package.java	Tue Oct 06 13:31:41 2009 -0700
@@ -320,7 +320,7 @@
      * @param class the class to get the package of.
      * @return the package of the class. It may be null if no package
      *          information is available from the archive or codebase.  */
-    static Package getPackage(Class c) {
+    static Package getPackage(Class<?> c) {
         String name = c.getName();
         int i = name.lastIndexOf('.');
         if (i != -1) {