return EOF rather than throw EoFException
This commit is contained in:
parent
f4255bdeef
commit
d091003cfc
|
@ -185,15 +185,17 @@ public class ChannelEndPoint implements EndPoint
|
||||||
Log.ignore(xx);
|
Log.ignore(xx);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (len>=0)
|
if (len>0)
|
||||||
throw x;
|
throw x;
|
||||||
|
Log.ignore(x);
|
||||||
|
len=-1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new IOException("Not Implemented");
|
throw new IOException("Not Implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue