summaryrefslogtreecommitdiff
path: root/java/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2012-10-08 23:20:29 +0200
committerJose <jose@zeroc.com>2012-10-08 23:20:29 +0200
commitf3f500f59d0bad3573c58a11ce77df62c0ff3356 (patch)
treec8343c057f3fc30cc0d4b21306e65c588e997b86 /java/src
parentFixed ICE-4561 - IceGrid demo with <env> (diff)
downloadice-f3f500f59d0bad3573c58a11ce77df62c0ff3356.tar.bz2
ice-f3f500f59d0bad3573c58a11ce77df62c0ff3356.tar.xz
ice-f3f500f59d0bad3573c58a11ce77df62c0ff3356.zip
Fix to GraphView refresh period
Diffstat (limited to 'java/src')
-rw-r--r--java/src/IceGridGUI/LiveDeployment/GraphView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/GraphView.java b/java/src/IceGridGUI/LiveDeployment/GraphView.java
index 8248ef39771..fb772855bc3 100644
--- a/java/src/IceGridGUI/LiveDeployment/GraphView.java
+++ b/java/src/IceGridGUI/LiveDeployment/GraphView.java
@@ -313,7 +313,8 @@ public class GraphView extends JFrame implements MetricsFieldContext
synchronized void setRefreshPeriod(int period)
{
- _period = period;
+ _period = period;
+ notify();
}
synchronized public void
@@ -321,7 +322,6 @@ public class GraphView extends JFrame implements MetricsFieldContext
{
while(true)
{
-
java.util.Set<MetricsViewInfo> metrics = null;
synchronized(GraphView.this)
{