diff --git a/source/Indy.IL2CPU.IL.X86/Call.cs b/source/Indy.IL2CPU.IL.X86/Call.cs index 0c626a57f..9d8f149ee 100644 --- a/source/Indy.IL2CPU.IL.X86/Call.cs +++ b/source/Indy.IL2CPU.IL.X86/Call.cs @@ -62,9 +62,6 @@ namespace Indy.IL2CPU.IL.X86 { public Call(Instruction aInstruction, MethodInformation aMethodInfo) : base(aInstruction, aMethodInfo) { - if (aInstruction.ToString() == "Callvirt !0[] System.Collections.Generic.List`1::ToArray()") { - System.Diagnostics.Debugger.Break(); - } MethodReference xMethod = ((MethodReference)aInstruction.Operand); Initialize(xMethod); } diff --git a/source/Indy.IL2CPU.IL.X86/Callvirt.cs b/source/Indy.IL2CPU.IL.X86/Callvirt.cs index 8e85cc94f..576b9bc87 100644 --- a/source/Indy.IL2CPU.IL.X86/Callvirt.cs +++ b/source/Indy.IL2CPU.IL.X86/Callvirt.cs @@ -16,9 +16,6 @@ namespace Indy.IL2CPU.IL.X86 { private readonly int mArgumentCount; public Callvirt(Instruction aInstruction, MethodInformation aMethodInfo) : base(aInstruction, aMethodInfo) { - if (aInstruction.Operand.ToString() == "!0[] System.Collections.Generic.List`1::ToArray()") { - System.Diagnostics.Debugger.Break(); - } int xThisOffSet = (from item in aMethodInfo.Locals select item.Offset + item.Size).LastOrDefault(); MethodReference xMethod = aInstruction.Operand as MethodReference;