diff options
author | Roberto E. Escobar | 2012-11-05 20:35:36 +0000 |
---|---|---|
committer | Roberto E. Escobar | 2012-11-05 20:35:36 +0000 |
commit | 8071c12bfff782028aab77a92f0ac273573dd10a (patch) | |
tree | 0a4526eec77ac74ce4f5bbb24d32f42b53c40e2a /plugins | |
parent | 295950eea44975e7dca9ea8df66f1b5d8459c0e9 (diff) | |
download | org.eclipse.osee-8071c12bfff782028aab77a92f0ac273573dd10a.tar.gz org.eclipse.osee-8071c12bfff782028aab77a92f0ac273573dd10a.tar.xz org.eclipse.osee-8071c12bfff782028aab77a92f0ac273573dd10a.zip |
bug: Fix OSGI event compile errors
Change-Id: Ibc24777b44dcbedde4ca42ce407c2d538bd84ab8
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/org.eclipse.osee.event.osgi/src/org/eclipse/osee/event/osgi/internal/EventProxy.java | 5 | ||||
-rw-r--r-- | plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java | 2 |
2 files changed, 0 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.event.osgi/src/org/eclipse/osee/event/osgi/internal/EventProxy.java b/plugins/org.eclipse.osee.event.osgi/src/org/eclipse/osee/event/osgi/internal/EventProxy.java index 526f006e647..1dadf519395 100644 --- a/plugins/org.eclipse.osee.event.osgi/src/org/eclipse/osee/event/osgi/internal/EventProxy.java +++ b/plugins/org.eclipse.osee.event.osgi/src/org/eclipse/osee/event/osgi/internal/EventProxy.java @@ -29,11 +29,6 @@ public class EventProxy implements Event { } @Override - public boolean contains(String name) { - return proxiedObject.containsProperty(name); - } - - @Override public String[] getKeys() { return proxiedObject.getPropertyNames(); } diff --git a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java b/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java index c85fa11ccad..0ccf2a69401 100644 --- a/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java +++ b/plugins/org.eclipse.osee.event/src/org/eclipse/osee/event/Event.java @@ -17,8 +17,6 @@ public interface Event { Object getValue(String name); - boolean contains(String name); - String[] getKeys(); String getTopic(); |