Remove unused method

This commit is contained in:
de4dot 2011-12-31 16:00:11 +01:00
parent 6b629f20c7
commit cd359243a2

View File

@ -649,11 +649,6 @@ namespace de4dot.code.deobfuscators {
return false;
}
static void addMethods(TypeDefinition type, Dictionary<MethodReferenceAndDeclaringTypeKey, bool> methods) {
foreach (var method in type.Methods)
methods[new MethodReferenceAndDeclaringTypeKey(method)] = true;
}
public static int convert(bool b) {
return b ? 1 : 0;
}