This commit is contained in:
Jan Kotas 2015-10-23 08:51:04 -07:00
Родитель 88138ccf07
Коммит 62ead8b743
1 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -33,8 +33,6 @@ namespace ILToNative
readonly CompilerTypeSystemContext _typeSystemContext;
readonly CompilationOptions _options;
Dictionary<string, int> _stringTable = new Dictionary<string, int>();
NodeFactory _nodeFactory;
DependencyAnalyzerBase<NodeFactory> _dependencyGraph;
@ -516,14 +514,6 @@ namespace ILToNative
}
}
internal int AddToStringTable(string str)
{
int id;
if (!_stringTable.TryGetValue(str, out id))
_stringTable.Add(str, id = _stringTable.Count);
return id;
}
struct ReadyToRunHelperKey : IEquatable<ReadyToRunHelperKey>
{
ReadyToRunHelperId _id;