Update code

This commit is contained in:
de4dot 2012-01-01 12:06:01 +01:00
parent 9a505b156e
commit 1f7f9958ab

View File

@ -122,12 +122,7 @@ namespace de4dot.code {
}
public IEnumerable<MethodDefinition> Methods {
get {
var list = new List<MethodDefinition>(stringDecrypters.Count);
foreach (var method in stringDecrypters.getKeys())
list.Add(method);
return list;
}
get { return stringDecrypters.getKeys(); }
}
class MyCallResult : CallResult {