diff options
author | Jose <jose@zeroc.com> | 2014-12-22 11:03:21 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-12-22 11:03:21 +0100 |
commit | a8624366c2ba6668e3780fc36e45c3a030537335 (patch) | |
tree | 8e96b328aecfb181a0ce7c15d78fc1355fb0959a /java/src | |
parent | Fixed ICE-6217 and ICE-6206: fixed background test failure (diff) | |
download | ice-a8624366c2ba6668e3780fc36e45c3a030537335.tar.bz2 ice-a8624366c2ba6668e3780fc36e45c3a030537335.tar.xz ice-a8624366c2ba6668e3780fc36e45c3a030537335.zip |
Fixed (ICE-6120) - ArrayOutOfBoundException in IceGridGUI
Diffstat (limited to 'java/src')
-rwxr-xr-x | java/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java b/java/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java index 6f31158974d..8e3ec1bd4c8 100755 --- a/java/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java +++ b/java/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java @@ -123,7 +123,14 @@ public class Server extends ListArrayTreeNode { admin.end_stopServer(r); amiSuccess(prefix); - rebuild(Server.this, false); + SwingUtilities.invokeLater(new Runnable() + { + @Override + public void run() + { + rebuild(Server.this, false); + } + }); } catch(Ice.UserException ex) { |