Should be "continue"

This commit is contained in:
de4dot 2012-03-17 11:18:52 +01:00
parent 9ecc5a313f
commit a3b052d15c

View File

@ -95,9 +95,9 @@ namespace de4dot.code.deobfuscators.Eazfuscator_NET {
var calledMethod = instr.Operand as MethodDefinition;
if (calledMethod == null || !calledMethod.IsStatic || calledMethod.Body == null)
return false;
continue;
if (!DotNetUtils.isMethod(calledMethod, "System.Void", "()"))
return false;
continue;
if (frameworkType == FrameworkType.Silverlight) {
if (!checkInitMethodSilverlight(calledMethod))