< prev index next >

src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java

Print this page

        

*** 32,42 **** import java.net.URI; import java.nio.charset.CharacterCodingException; import java.nio.charset.Charset; import java.security.AccessControlContext; import java.security.ProtectionDomain; - import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; import java.util.stream.Stream; --- 32,41 ----
*** 310,323 **** /** * Set the cause of Throwable * @param cause set t's cause to new value */ void setCause(Throwable t, Throwable cause); - - /** - * Privileged System.loadLibrary - * - * @param caller on behalf of which the library is being loaded - * @param library name of the library to load - */ - void loadLibrary(Class<?> caller, String library); } --- 309,314 ----
< prev index next >