diff options
author | slewis | 2010-05-03 23:14:41 +0000 |
---|---|---|
committer | slewis | 2010-05-03 23:14:41 +0000 |
commit | 82075fc848ba4effa5230c5e83cb75ff9c4bf17f (patch) | |
tree | 6001394443c377b62570940e025d84d9ecc2d6c5 /examples | |
parent | d7eb955afa94fa95d98bfd159b1fa4a2cf2c0470 (diff) | |
download | org.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.tar.gz org.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.tar.xz org.eclipse.ecf-82075fc848ba4effa5230c5e83cb75ff9c4bf17f.zip |
Added notifyAll with appLock
Diffstat (limited to 'examples')
-rw-r--r-- | examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.host/src/org/eclipse/ecf/internal/examples/remoteservices/hello/host/HelloHostApplication.java | 2 |
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(); } } |