summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/SliceChecksums.cs
diff options
context:
space:
mode:
authorAustin Henriksen <austin@zeroc.com>2019-10-30 05:14:29 -0400
committerJoe George <joe@zeroc.com>2021-02-01 16:46:35 -0500
commit452f57976a135c8b72fc8d8f580d5d50618c0cae (patch)
tree0233eedd3cdc380126fd613b04b8b468beb289c0 /csharp/src/Ice/SliceChecksums.cs
parentRemove IcePatch2 (#602) (diff)
downloadice-452f57976a135c8b72fc8d8f580d5d50618c0cae.tar.bz2
ice-452f57976a135c8b72fc8d8f580d5d50618c0cae.tar.xz
ice-452f57976a135c8b72fc8d8f580d5d50618c0cae.zip
Remove checksum support (#607)
* Removed checksum sources from swift mapping project file. * Removed checksum tests from Python. * Removed checksum from Python mapping. * Removed checksum tests from PHP mapping. * Removed checksum support from PHP mapping. * Removed checksum sources from MATLAB project file. * Removed checksum option from slice2x manpages. * Removed checksum sources from JavaScript mapping. * Removed checksum tests from Java mapping. * Removed outdated checksum metadata from Java mapping. * Removed checksum support from Java mapping. * Removed checksum tests from csharp. * Removed checksum support from csharp mapping. * Removed checksum tests from cpp * Removed checksum support from IceBox. * Removed checksum support from IceStorm. * Removed Slice checksum support from IceGrid. * Fixed broken filters file for Slice VS project. * Removed checksum support from cpp mapping. * Removed checksum support from Slice definitions. * Removed checksum support from cpp98 mapping.
Diffstat (limited to 'csharp/src/Ice/SliceChecksums.cs')
-rw-r--r--csharp/src/Ice/SliceChecksums.cs30
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);
- }
- }
- }
- }
-
-}