Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-05-27 12:40:26 +0000
committerMichael Valenta2003-05-27 12:40:26 +0000
commit4d568b633df0a1925a5d8bfbae9ff54db20e3c56 (patch)
treec1b490372366b1f8792694c6ed1cb3bcacc37046
parenta3f9fdaf042a0e72f850996ff7947a72052d45d5 (diff)
downloadeclipse.platform.team-4d568b633df0a1925a5d8bfbae9ff54db20e3c56.tar.gz
eclipse.platform.team-4d568b633df0a1925a5d8bfbae9ff54db20e3c56.tar.xz
eclipse.platform.team-4d568b633df0a1925a5d8bfbae9ff54db20e3c56.zip
Backed out of fix for bug 36351 because pserver is not properly bufferingR2_1_20030528
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
index 4ebf779f9..d1dc14e88 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/connection/PServerConnection.java
@@ -223,8 +223,6 @@ public class PServerConnection implements IServerConnection {
Socket result;
try {
result= Util.createSocket(cvsroot.getHost(), port, monitor);
- // Bug 36351: disable buffering and send bytes immediately
- result.setTcpNoDelay(true);
} catch (InterruptedIOException e) {
// If we get this exception, chances are the host is not responding
throw new InterruptedIOException(Policy.bind("PServerConnection.socket", new Object[] {cvsroot.getHost()}));//$NON-NLS-1$

Back to the top