Skip to content

Commit 6314847

Browse files
committed
[Modify] Rename it
1 parent 8237a38 commit 6314847

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

websocket-sharp/Net/HttpListener.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public sealed class HttpListener : IDisposable
7171
private bool _disposed;
7272
private bool _ignoreWriteExceptions;
7373
private volatile bool _listening;
74-
private Logger _logger;
74+
private Logger _log;
7575
private string _objectName;
7676
private HttpListenerPrefixCollection _prefixes;
7777
private string _realm;
@@ -104,7 +104,7 @@ public HttpListener ()
104104
_contextRegistry = new LinkedList<HttpListenerContext> ();
105105
_contextRegistrySync = ((ICollection) _contextRegistry).SyncRoot;
106106

107-
_logger = new Logger ();
107+
_log = new Logger ();
108108
_objectName = GetType ().ToString ();
109109
_prefixes = new HttpListenerPrefixCollection (this);
110110
_waitQueue = new Queue<HttpListenerAsyncResult> ();
@@ -336,7 +336,7 @@ public static bool IsSupported {
336336
/// </value>
337337
public Logger Log {
338338
get {
339-
return _logger;
339+
return _log;
340340
}
341341
}
342342

0 commit comments

Comments
 (0)