[Modify] Polish it

This commit is contained in:
sta 2019-10-12 21:34:56 +09:00
parent e493291e9a
commit eadd67a1d4

View File

@ -136,7 +136,9 @@ namespace WebSocketSharp.Net
} }
set { set {
checkDisposed (); if (_disposed)
throw new ObjectDisposedException (GetType ().ToString ());
_contentEncoding = value; _contentEncoding = value;
} }
} }