< prev index next >

src/java.base/share/classes/javax/net/ssl/SSLServerSocketFactory.java

Print this page

        

*** 95,104 **** --- 95,105 ---- if (cl != null) { cls = cl.loadClass(clsName); } } log("class " + clsName + " is loaded"); + @SuppressWarnings("deprecation") SSLServerSocketFactory fac = (SSLServerSocketFactory)cls.newInstance(); log("instantiated an instance of class " + clsName); theFactory = fac; return fac; } catch (Exception e) {
< prev index next >