Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2004-12-24 07:15:40 +0000
committerslewis2004-12-24 07:15:40 +0000
commit9a88fc50701649b648b45eb7be23ddc9a809851f (patch)
tree4fce3f19cadae4f34afc221214511e9a72914e85
parent5f334ea17600eb276a6842b22b36ce45fddc979e (diff)
downloadorg.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
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/IAsynchConnection.java1
-rw-r--r--framework/bundles/org.eclipse.ecf/src/org/eclipse/ecf/internal/comm/ISynchConnection.java1
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;
}

Back to the top