diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-12-07 11:41:37 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-12-07 11:41:37 +0100 |
commit | bdbdba1221869fccaa4624065e94e3c95a37d7ba (patch) | |
tree | 024eec0e0d4e9eae1825ccfaa6efd658f9f4fef7 /cs/src/Ice/ObjectAdapterFactory.cs | |
parent | Fixed bug 4225 -- servant dispatch needs to lock/unlock the global GC mutex (diff) | |
download | ice-bdbdba1221869fccaa4624065e94e3c95a37d7ba.tar.bz2 ice-bdbdba1221869fccaa4624065e94e3c95a37d7ba.tar.xz ice-bdbdba1221869fccaa4624065e94e3c95a37d7ba.zip |
Got rid of IceUtilInternal.Set (bug 4371)
Diffstat (limited to 'cs/src/Ice/ObjectAdapterFactory.cs')
-rw-r--r-- | cs/src/Ice/ObjectAdapterFactory.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cs/src/Ice/ObjectAdapterFactory.cs b/cs/src/Ice/ObjectAdapterFactory.cs index 74675865f79..d355b13f45d 100644 --- a/cs/src/Ice/ObjectAdapterFactory.cs +++ b/cs/src/Ice/ObjectAdapterFactory.cs @@ -13,7 +13,6 @@ namespace IceInternal using System.Collections; using System.Collections.Generic; using System.Diagnostics; - using IceUtilInternal; public sealed class ObjectAdapterFactory { @@ -204,13 +203,13 @@ namespace IceInternal { instance_ = instance; _communicator = communicator; - _adapterNamesInUse = new Set(); + _adapterNamesInUse = new HashSet<string>(); _adapters = new List<Ice.ObjectAdapterI>(); } private Instance instance_; private Ice.Communicator _communicator; - private Set _adapterNamesInUse; + private HashSet<string> _adapterNamesInUse; private List<Ice.ObjectAdapterI> _adapters; } |