src/share/classes/java/awt/WaitDispatchSupport.java

Print this page

        

@@ -222,12 +222,12 @@
             // new event pump it will post the waking event to EDT.
             // The event will be handled after the the new event pump
             // starts. Thus, the enter() method will not hang.
             //
             // Event pump should be privileged. See 6300270.
-            AccessController.doPrivileged(new PrivilegedAction() {
-                public Object run() {
+            AccessController.doPrivileged(new PrivilegedAction<Void>() {
+                public Void run() {
                     run.run();
                     return null;
                 }
             });
         } else {