< prev index next >

src/java.desktop/share/classes/sun/awt/FontConfiguration.java

Print this page

        

*** 954,964 **** } }); if (fcc != null) { try { ! fc = (Charset) fcc.newInstance(); } catch (Exception e) { } } } if (fc == null) { --- 954,966 ---- } }); if (fcc != null) { try { ! @SuppressWarnings("deprecation") ! Object tmp = fcc.newInstance(); ! fc = (Charset) tmp; } catch (Exception e) { } } } if (fc == null) {
< prev index next >