diff options
| author | slewis | 2004-12-24 07:15:40 +0000 |
|---|---|---|
| committer | slewis | 2004-12-24 07:15:40 +0000 |
| commit | 9a88fc50701649b648b45eb7be23ddc9a809851f (patch) | |
| tree | 4fce3f19cadae4f34afc221214511e9a72914e85 | |
| parent | 5f334ea17600eb276a6842b22b36ce45fddc979e (diff) | |
| download | org.eclipse.ecf-9a88fc50701649b648b45eb7be23ddc9a809851f.tar.gz org.eclipse.ecf-9a88fc50701649b648b45eb7be23ddc9a809851f.tar.xz org.eclipse.ecf-9a88fc50701649b648b45eb7be23ddc9a809851f.zip | |
Removed sendAsynch(ID,Object) and sendSynch(ID,Object) from IAsynchConnection and ISynchConnection
2 files changed, 0 insertions, 2 deletions
diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/IAsynchConnection.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/IAsynchConnection.java index 7a4e044f1..79906e59f 100644 --- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/IAsynchConnection.java +++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/IAsynchConnection.java @@ -7,5 +7,4 @@ import org.eclipse.ecf.core.identity.ID; public interface IAsynchConnection extends IConnection { public void sendAsynch(ID receiver, byte [] data) throws IOException; - public void sendAsynch(ID receiver, Object data) throws IOException; } diff --git a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/ISynchConnection.java b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/ISynchConnection.java index 4c3eed2b8..b05c62e77 100644 --- a/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/ISynchConnection.java +++ b/framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/ISynchConnection.java @@ -7,5 +7,4 @@ import org.eclipse.ecf.core.identity.ID; public interface ISynchConnection extends IConnection { public Object sendSynch(ID receiver, byte [] data) throws IOException; - public Object sendSynch(ID receiver, Object data) throws IOException; } |
