Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2010-05-03 23:14:41 +0000
committerslewis2010-05-03 23:14:41 +0000
commit82075fc848ba4effa5230c5e83cb75ff9c4bf17f (patch)
tree6001394443c377b62570940e025d84d9ecc2d6c5 /examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host
parentd7eb955afa94fa95d98bfd159b1fa4a2cf2c0470 (diff)
downloadorg.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.tar.gz
org.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.tar.xz
org.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.zip
Added notifyAll with appLock
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
index ae00cd734..bf0ebf582 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java
@@ -69,7 +69,7 @@ public class HelloHostApplication implements IApplication,
bundleContext = null;
synchronized (appLock) {
done = true;
- notifyAll();
+ appLock.notifyAll();
}
}

Back to the top