jdk/src/solaris/classes/sun/awt/X11/InfoWindow.java
changeset 22584 eed64ee05369
parent 7668 d4a77089c587
child 23647 41d22f2dbeb5
equal deleted inserted replaced
22583:e7d5af0b11e9 22584:eed64ee05369
     1 /*
     1 /*
     2  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   449 
   449 
   450             public void run() {
   450             public void run() {
   451                 while (true) {
   451                 while (true) {
   452                     Message msg = null;
   452                     Message msg = null;
   453                     try {
   453                     try {
   454                         msg = (Message)messageQueue.take();
   454                         msg = messageQueue.take();
   455                     } catch (InterruptedException e) {
   455                     } catch (InterruptedException e) {
   456                         return;
   456                         return;
   457                     }
   457                     }
   458 
   458 
   459                     /*
   459                     /*