Browse Source

Make the specific code mappings storages internal.

pull/191/merge
Eusebiu Marcu 15 years ago
parent
commit
bdef355037
  1. 2
      ICSharpCode.Decompiler/Ast/CSharpCodeMapping.cs
  2. 2
      ICSharpCode.Decompiler/Disassembler/ILCodeMapping.cs

2
ICSharpCode.Decompiler/Ast/CSharpCodeMapping.cs

@ -12,7 +12,7 @@ namespace ICSharpCode.Decompiler.Ast
/// <summary> /// <summary>
/// Stores the C# code mappings. /// Stores the C# code mappings.
/// </summary> /// </summary>
public static class CSharpCodeMapping static class CSharpCodeMapping
{ {
static ConcurrentDictionary<string, List<MemberMapping>> codeMappings = new ConcurrentDictionary<string, List<MemberMapping>>(); static ConcurrentDictionary<string, List<MemberMapping>> codeMappings = new ConcurrentDictionary<string, List<MemberMapping>>();

2
ICSharpCode.Decompiler/Disassembler/ILCodeMapping.cs

@ -10,7 +10,7 @@ namespace ICSharpCode.Decompiler.Disassembler
/// <summary> /// <summary>
/// Stores the IL code mappings. /// Stores the IL code mappings.
/// </summary> /// </summary>
public static class ILCodeMapping static class ILCodeMapping
{ {
static ConcurrentDictionary<string, List<MemberMapping>> codeMappings = new ConcurrentDictionary<string, List<MemberMapping>>(); static ConcurrentDictionary<string, List<MemberMapping>> codeMappings = new ConcurrentDictionary<string, List<MemberMapping>>();

Loading…
Cancel
Save