src/share/classes/com/sun/java/swing/plaf/gtk/GTKStyle.java

Print this page

        

@@ -1084,17 +1084,17 @@
             this.methodName = methodName;
         }
 
         public Object createValue(UIDefaults table) {
             try {
-                Class c = Class.forName(className, true,Thread.currentThread().
+                Class<?> c = Class.forName(className, true,Thread.currentThread().
                                         getContextClassLoader());
 
                 if (methodName == null) {
                     return c.newInstance();
                 }
-                Method m = c.getMethod(methodName, (Class[])null);
+                Method m = c.getMethod(methodName, (Class<?>[])null);
 
                 return m.invoke(c, (Object[])null);
             } catch (ClassNotFoundException cnfe) {
             } catch (IllegalAccessException iae) {
             } catch (InvocationTargetException ite) {