diff options
Diffstat (limited to 'csharp/src/Ice/TcpConnector.cs')
-rw-r--r-- | csharp/src/Ice/TcpConnector.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp/src/Ice/TcpConnector.cs b/csharp/src/Ice/TcpConnector.cs index a4ca495c2a2..454cb3e1f41 100644 --- a/csharp/src/Ice/TcpConnector.cs +++ b/csharp/src/Ice/TcpConnector.cs @@ -37,13 +37,13 @@ namespace IceInternal _connectionId = connectionId; _hashCode = 5381; - IceInternal.HashUtil.hashAdd(ref _hashCode, _addr); + HashUtil.hashAdd(ref _hashCode, _addr); if(_sourceAddr != null) { - IceInternal.HashUtil.hashAdd(ref _hashCode, _sourceAddr); + HashUtil.hashAdd(ref _hashCode, _sourceAddr); } - IceInternal.HashUtil.hashAdd(ref _hashCode, _timeout); - IceInternal.HashUtil.hashAdd(ref _hashCode, _connectionId); + HashUtil.hashAdd(ref _hashCode, _timeout); + HashUtil.hashAdd(ref _hashCode, _connectionId); } public override bool Equals(object obj) |