Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Kumpera <kumpera@gmail.com>2013-11-12 23:18:20 +0400
committerRodrigo Kumpera <kumpera@gmail.com>2013-11-12 23:18:31 +0400
commitaea002c50438df8bc1a6b53a214f6304f18bcfad (patch)
treefaff96e42c10117739d63e6084bca315b208580c /mcs/class/corlib/System/Delegate.cs
parent1da5ac516cf6c2b431e14ab4de68f34cb1910007 (diff)
Fix the build.
Diffstat (limited to 'mcs/class/corlib/System/Delegate.cs')
-rw-r--r--mcs/class/corlib/System/Delegate.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System/Delegate.cs b/mcs/class/corlib/System/Delegate.cs
index faa2bc29f44..507153c421a 100644
--- a/mcs/class/corlib/System/Delegate.cs
+++ b/mcs/class/corlib/System/Delegate.cs
@@ -527,7 +527,7 @@ namespace System
return source;
if (source.GetType () != value.GetType ())
- throw new ArgumentException (Locale.GetText ("Incompatible Delegate Types. First is {0} second is {1}.", a.GetType ().FullName, b.GetType ().FullName));
+ throw new ArgumentException (Locale.GetText ("Incompatible Delegate Types. First is {0} second is {1}.", source.GetType ().FullName, value.GetType ().FullName));
return source.RemoveImpl (value);
}