diff options
Diffstat (limited to 'csharp/src/Ice/SliceChecksums.cs')
-rw-r--r-- | csharp/src/Ice/SliceChecksums.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/csharp/src/Ice/SliceChecksums.cs b/csharp/src/Ice/SliceChecksums.cs deleted file mode 100644 index 6444be3dc8d..00000000000 --- a/csharp/src/Ice/SliceChecksums.cs +++ /dev/null @@ -1,30 +0,0 @@ -// -// Copyright (c) ZeroC, Inc. All rights reserved. -// - -namespace Ice -{ - using System; - using System.Collections; - using System.Collections.Generic; - using System.Reflection; - - public sealed class SliceChecksums - { - public static Dictionary<string, string> checksums = new Dictionary<string, string>(); - static SliceChecksums() - { - Type[] types = IceInternal.AssemblyUtil.findTypesWithPrefix("IceInternal.SliceChecksums"); - foreach(Type t in types) - { - FieldInfo f = t.GetField("map", BindingFlags.Public | BindingFlags.Static); - Hashtable map = (Hashtable)f.GetValue(null); - foreach(DictionaryEntry entry in map) - { - checksums.Add((string)entry.Key, (string)entry.Value); - } - } - } - } - -} |