src/share/classes/com/sun/media/sound/SoftSynthesizer.java

Print this page

        

@@ -947,11 +947,11 @@
 
         for (AudioSynthesizerPropertyInfo item2 : items) {
             Object v = (info == null) ? null : info.get(item2.name);
             v = (v != null) ? v : storedProperties.getProperty(item2.name);
             if (v != null) {
-                Class c = (item2.valueClass);
+                Class<?> c = (item2.valueClass);
                 if (c.isInstance(v))
                     item2.value = v;
                 else if (v instanceof String) {
                     String s = (String) v;
                     if (c == Boolean.class) {