src/solaris/classes/sun/print/CUPSPrinter.java

Print this page

        

@@ -75,11 +75,16 @@
     private static int cupsPort = 0;
 
     static {
         // load awt library to access native code
         java.security.AccessController.doPrivileged(
-            new sun.security.action.LoadLibraryAction("awt"));
+            new java.security.PrivilegedAction<Void>() {
+                public Void run() {
+                    System.loadLibrary("awt");
+                    return null;
+                }
+            });
         libFound = initIDs();
         if (libFound) {
            cupsServer = getCupsServer();
            cupsPort = getCupsPort();
         }