< prev index next >

src/java.desktop/macosx/classes/sun/lwawt/macosx/CDropTargetContextPeer.java

Print this page

        

@@ -49,24 +49,10 @@
 
     private CDropTargetContextPeer() {
         super();
     }
 
-    // We block, waiting for an empty event to get posted (CToolkit.invokeAndWait)
-    // This is so we finish dispatching DropTarget events before we dispatch the dragDropFinished event (which is a higher priority).
-    private void flushEvents(Component c) {
-        try {
-            LWCToolkit.invokeAndWait(new Runnable() {
-                public synchronized void run() {
-                }
-            }, c);
-        }
-        catch(Exception e) {
-            e.printStackTrace();
-        }
-    }
-
     protected Object getNativeData(long format) {
         long nativeDropTarget = this.getNativeDragContext();
 
         synchronized (awtLockAccess) {
             fNativeDataAvailable = 0;
< prev index next >