Removed output shutdown from close().

Since we now support correctly output shutdown, this is not needed anymore.

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3216 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Simone Bordet 2011-05-19 21:27:57 +00:00
parent 297d4cb49b
commit c6665c228a
1 changed files with 0 additions and 11 deletions

View File

@ -139,17 +139,6 @@ public class ChannelEndPoint implements EndPoint
*/
public void close() throws IOException
{
if (_socket!=null && !_socket.isOutputShutdown())
{
try
{
_socket.shutdownOutput();
}
catch (IOException x)
{
Log.ignore(x);
}
}
_channel.close();
}