[Modify] Remove it

This commit is contained in:
sta 2021-05-27 19:47:38 +09:00
parent 588916e232
commit 64206f0f63

View File

@ -58,7 +58,6 @@ namespace WebSocketSharp.Net
private HttpListenerContext _context; private HttpListenerContext _context;
private bool _endCalled; private bool _endCalled;
private Exception _exception; private Exception _exception;
private bool _inGet;
private object _state; private object _state;
private object _sync; private object _sync;
private bool _syncCompleted; private bool _syncCompleted;
@ -100,16 +99,6 @@ namespace WebSocketSharp.Net
} }
} }
internal bool InGet {
get {
return _inGet;
}
set {
_inGet = value;
}
}
internal object SyncRoot { internal object SyncRoot {
get { get {
return _sync; return _sync;