diff options
Diffstat (limited to 'cs/src/Ice/EndpointFactoryManager.cs')
-rw-r--r-- | cs/src/Ice/EndpointFactoryManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cs/src/Ice/EndpointFactoryManager.cs b/cs/src/Ice/EndpointFactoryManager.cs index 7c429d7410d..1e93c60956c 100644 --- a/cs/src/Ice/EndpointFactoryManager.cs +++ b/cs/src/Ice/EndpointFactoryManager.cs @@ -10,7 +10,7 @@ namespace IceInternal { - using System.Collections; + using System.Collections.Generic; using System.Diagnostics; using System.Text.RegularExpressions; @@ -19,7 +19,7 @@ namespace IceInternal internal EndpointFactoryManager(Instance instance) { instance_ = instance; - _factories = new ArrayList(); + _factories = new List<EndpointFactory>(); } public void add(EndpointFactory factory) @@ -162,7 +162,7 @@ namespace IceInternal } private readonly Instance instance_; - private readonly ArrayList _factories; + private readonly List<EndpointFactory> _factories; } } |