Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-01-07 07:30:01 +0000
committerEike Stepper2011-01-07 07:30:01 +0000
commitcd784f4a3a65c9c0ab867fe4af3e118daae5bcc4 (patch)
tree09fb8a117cdcd55e9262e08f43c494418bca0966 /plugins/org.eclipse.net4j/src
parent06e59e0b000a5a594bc0b0eae1887806e27a211c (diff)
downloadcdo-cd784f4a3a65c9c0ab867fe4af3e118daae5bcc4.tar.gz
cdo-cd784f4a3a65c9c0ab867fe4af3e118daae5bcc4.tar.xz
cdo-cd784f4a3a65c9c0ab867fe4af3e118daae5bcc4.zip
fixed DEFAULT_MILLIS_INTERRUPT_CHECK
Diffstat (limited to 'plugins/org.eclipse.net4j/src')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/net4j/channel/ChannelInputStream.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/channel/ChannelInputStream.java b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/channel/ChannelInputStream.java
index fab62ca069..1a0dc1490e 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/net4j/channel/ChannelInputStream.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/net4j/channel/ChannelInputStream.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* Eike Stepper - initial API and implementation
*/
@@ -31,9 +31,9 @@ public class ChannelInputStream extends BufferInputStream
public ChannelInputStream(IChannel channel, long millisBeforeTimeout)
{
this.channel = channel;
- channel.setReceiveHandler(this);
this.millisBeforeTimeout = millisBeforeTimeout;
- millisInterruptCheck = DEFAULT_MILLIS_INTERRUPT_CHECK;
+
+ channel.setReceiveHandler(this);
}
public IChannel getChannel()

Back to the top