From 99bb6189cee21063853318b35d49778206d40842 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 8 Jan 2018 16:27:35 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Net/HttpListenerRequest.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/websocket-sharp/Net/HttpListenerRequest.cs b/websocket-sharp/Net/HttpListenerRequest.cs index b076c50e..96fc5836 100644 --- a/websocket-sharp/Net/HttpListenerRequest.cs +++ b/websocket-sharp/Net/HttpListenerRequest.cs @@ -62,7 +62,6 @@ namespace WebSocketSharp.Net private bool _chunked; private Encoding _contentEncoding; private long _contentLength; - private bool _contentLengthSet; private HttpListenerContext _context; private CookieCollection _cookies; private WebHeaderCollection _headers; @@ -523,8 +522,6 @@ namespace WebSocketSharp.Net } _contentLength = len; - _contentLengthSet = true; - return; }