[corlib] Always pass ProxyCheckCast check
authorMarek Safar <marek.safar@gmail.com>
Tue, 17 Mar 2015 08:37:01 +0000 (09:37 +0100)
committerMarek Safar <marek.safar@gmail.com>
Tue, 17 Mar 2015 08:37:01 +0000 (09:37 +0100)
mcs/class/corlib/System.Runtime.Remoting/RemotingServices.cs

index 89d42d6ebda6881fc15daac562c445784ac5cc03..63e9bb12ce41a9c2b3302ec01667c76d10e83ebe 100644 (file)
@@ -112,7 +112,8 @@ namespace System.Runtime.Remoting
 
                internal static bool ProxyCheckCast (RealProxy rp, RuntimeType castType)
                {
-                       throw new NotImplementedException ("ProxyCheckCast");
+                       // TODO: What should it do?
+                       return true;
                }
 #endif