src/java.base/unix/classes/sun/net/dns/ResolverConfigurationImpl.java
changeset 55693 9a97b1393e72
parent 53018 8bf9268df0e2
--- a/src/java.base/unix/classes/sun/net/dns/ResolverConfigurationImpl.java	Wed Jul 17 11:43:38 2019 +0200
+++ b/src/java.base/unix/classes/sun/net/dns/ResolverConfigurationImpl.java	Wed Jul 17 12:35:46 2019 +0200
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -259,13 +259,7 @@
     static native String fallbackDomain0();
 
     static {
-        java.security.AccessController.doPrivileged(
-            new java.security.PrivilegedAction<>() {
-                public Void run() {
-                    System.loadLibrary("net");
-                    return null;
-                }
-            });
+        jdk.internal.loader.BootLoader.loadLibrary("net");
     }
 
 }