summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2014-12-22 11:03:21 +0100
committerJose <jose@zeroc.com>2014-12-22 11:03:21 +0100
commita8624366c2ba6668e3780fc36e45c3a030537335 (patch)
tree8e96b328aecfb181a0ce7c15d78fc1355fb0959a /java/src
parentFixed ICE-6217 and ICE-6206: fixed background test failure (diff)
downloadice-a8624366c2ba6668e3780fc36e45c3a030537335.tar.bz2
ice-a8624366c2ba6668e3780fc36e45c3a030537335.tar.xz
ice-a8624366c2ba6668e3780fc36e45c3a030537335.zip
Fixed (ICE-6120) - ArrayOutOfBoundException in IceGridGUI
Diffstat (limited to 'java/src')
-rwxr-xr-xjava/src/IceGridGUI/src/main/java/IceGridGUI/LiveDeployment/Server.java9
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)
{