mirror of
https://github.com/0xd4d/de4dot
synced 2026-06-08 10:09:02 +00:00
Should be "continue"
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user