Rename method

This commit is contained in:
de4dot 2012-02-13 10:20:11 +01:00
parent bf0f136ec9
commit a35c765f15
2 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ namespace de4dot.code.deobfuscators.CodeVeil {
addTypeToBeRemoved(proxyDelegateFinder.MethodInfoType, "Obfuscator proxy method MethodInfo type");
}
addMethodsToBeRemoved(InvalidMethodsFinder.findInvalidMethods(module), "Anti-reflection method");
addMethodsToBeRemoved(InvalidMethodsFinder.findAll(module), "Anti-reflection method");
base.deobfuscateEnd();
}

View File

@ -22,7 +22,7 @@ using Mono.Cecil;
namespace de4dot.code.deobfuscators.CodeVeil {
class InvalidMethodsFinder {
public static List<MethodDefinition> findInvalidMethods(ModuleDefinition module) {
public static List<MethodDefinition> findAll(ModuleDefinition module) {
var list = new List<MethodDefinition>();
foreach (var type in module.GetTypes()) {
foreach (var method in type.Methods) {