diff options
Diffstat (limited to 'csharp/src/Ice/ConnectRequestHandler.cs')
-rw-r--r-- | csharp/src/Ice/ConnectRequestHandler.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/csharp/src/Ice/ConnectRequestHandler.cs b/csharp/src/Ice/ConnectRequestHandler.cs index 76fadf29fd8..370d855ded2 100644 --- a/csharp/src/Ice/ConnectRequestHandler.cs +++ b/csharp/src/Ice/ConnectRequestHandler.cs @@ -7,12 +7,9 @@ // // ********************************************************************** -using System; -using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Threading; -using Ice.Instrumentation; namespace IceInternal { @@ -202,7 +199,7 @@ namespace IceInternal { while(_flushing && _exception == null) { - System.Threading.Monitor.Wait(this); + Monitor.Wait(this); } if(_exception != null) |