Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Finkbeiner2014-04-10 19:11:21 +0000
committerAndrew M. Finkbeiner2014-04-10 19:11:21 +0000
commit3ed07eab701eae58fe61710ecc2dfca3729115bc (patch)
tree8c3bbe6090f96ea088020eda7c5eccafde9569ab /plugins/org.eclipse.osee.ote.jms
parent164fd76d747181a677dd513683f269a7fe2ea998 (diff)
downloadorg.eclipse.osee-3ed07eab701eae58fe61710ecc2dfca3729115bc.tar.gz
org.eclipse.osee-3ed07eab701eae58fe61710ecc2dfca3729115bc.tar.xz
org.eclipse.osee-3ed07eab701eae58fe61710ecc2dfca3729115bc.zip
bug: Fix ds bind warning
Diffstat (limited to 'plugins/org.eclipse.osee.ote.jms')
-rw-r--r--plugins/org.eclipse.osee.ote.jms/src/org/eclipse/osee/ote/jms/bridge/EventToJmsComponent.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ote.jms/src/org/eclipse/osee/ote/jms/bridge/EventToJmsComponent.java b/plugins/org.eclipse.osee.ote.jms/src/org/eclipse/osee/ote/jms/bridge/EventToJmsComponent.java
index 84f0c590ccf..a4fa5982742 100644
--- a/plugins/org.eclipse.osee.ote.jms/src/org/eclipse/osee/ote/jms/bridge/EventToJmsComponent.java
+++ b/plugins/org.eclipse.osee.ote.jms/src/org/eclipse/osee/ote/jms/bridge/EventToJmsComponent.java
@@ -40,10 +40,14 @@ public class EventToJmsComponent extends OseeMessagingListener implements EventH
MYID = UUID.randomUUID();
}
- void start(){
+ public void start(){
}
+ public void stop(){
+
+ }
+
public synchronized void bindConnectionNode(OteServerJmsNodeProvider connectionNode){
this.connecitonNode = connectionNode;
connecitonNode.getConnectionNode().subscribe(BridgeMessages.BYTE_MESSAGE, this);

Back to the top