From 6fec29daabbee53298205dc0c9a43bda30a23af4 Mon Sep 17 00:00:00 2001 From: de4dot Date: Wed, 28 Sep 2011 00:57:17 +0200 Subject: [PATCH] Func should take a MethodDefinition as first arg --- de4dot.code/StringDecrypter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/de4dot.code/StringDecrypter.cs b/de4dot.code/StringDecrypter.cs index e58e26ed..0e05a1ca 100644 --- a/de4dot.code/StringDecrypter.cs +++ b/de4dot.code/StringDecrypter.cs @@ -396,7 +396,7 @@ namespace de4dot { } } - public void add(MethodDefinition method, Func handler) { + public void add(MethodDefinition method, Func handler) { if (method != null) stringDecrypters[new MethodReferenceAndDeclaringTypeKey(method)] = handler; }