Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2010-05-10 21:59:41 +0000
committerslewis2010-05-10 21:59:41 +0000
commita12c16715195a3accf0f04b697a71fa9b210f909 (patch)
tree68068ebcb3129767c9f1a56d0804fd2af733bfc0 /examples
parentf64f181a4739298c42b7df5b93bd0050065d3d5a (diff)
downloadorg.eclipse.ecf-a12c16715195a3accf0f04b697a71fa9b210f909.tar.gz
org.eclipse.ecf-a12c16715195a3accf0f04b697a71fa9b210f909.tar.xz
org.eclipse.ecf-a12c16715195a3accf0f04b697a71fa9b210f909.zip
Added report to system.out that a proxy is being removed.
Diffstat (limited to 'examples')
-rw-r--r--examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/HelloConsumerApplication.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/HelloConsumerApplication.java b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/HelloConsumerApplication.java
index 42de69fb0..71eb54c19 100644
--- a/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/HelloConsumerApplication.java
+++ b/examples/bundles/org.eclipse.ecf.examples.remoteservices.hello.consumer/src/org/eclipse/ecf/internal/examples/remoteservices/hello/consumer/HelloConsumerApplication.java
@@ -270,6 +270,7 @@ public class HelloConsumerApplication implements IApplication,
}
public void removedService(ServiceReference reference, Object service) {
+ System.out.println("IHello Service proxy removed");
}
}

Back to the top