src/share/classes/java/awt/image/ImageFilter.java

Print this page

        

*** 102,111 **** --- 102,112 ---- * * @param props the properties from the source object * @exception NullPointerException if <code>props</code> is null */ public void setProperties(Hashtable<?,?> props) { + @SuppressWarnings("unchecked") Hashtable<Object,Object> p = (Hashtable<Object,Object>)props.clone(); Object o = p.get("filters"); if (o == null) { p.put("filters", toString()); } else if (o instanceof String) {