From 6d3632f14404704fb14e2f626cb52c8c2690b494 Mon Sep 17 00:00:00 2001 From: jfrijters Date: Mon, 31 May 2010 09:33:28 +0000 Subject: [PATCH] Removed unused code. --- runtime/verifier.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/runtime/verifier.cs b/runtime/verifier.cs index 3e7d8d5f..0394745d 100644 --- a/runtime/verifier.cs +++ b/runtime/verifier.cs @@ -1171,11 +1171,6 @@ class MethodAnalyzer firstNonArgLocalIndex++; } } - TypeWrapper[] argumentsByLocalIndex = new TypeWrapper[firstNonArgLocalIndex]; - for(int i = 0; i < argumentsByLocalIndex.Length; i++) - { - argumentsByLocalIndex[i] = state[0].GetLocalTypeEx(i); - } InstructionState s = state[0].Copy(); bool done = false; ClassFile.Method.Instruction[] instructions = method.Instructions;