From b11ac1b4419b7404a8429ca1485393e12afe4d4d Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Fri, 19 Aug 2016 20:28:13 -0700 Subject: [PATCH] Fix build breaks and warnings in internal build [tfs-changeset: 1623382] Commit migrated from https://github.com/dotnet/coreclr/commit/d6753d1ba1bde374befac3ad31b2b6b86eba0927 --- src/coreclr/src/mscorlib/src/System/Reflection/Binder.cs | 7 ------- src/coreclr/src/mscorlib/src/mscorlib.txt | 1 - 2 files changed, 8 deletions(-) diff --git a/src/coreclr/src/mscorlib/src/System/Reflection/Binder.cs b/src/coreclr/src/mscorlib/src/System/Reflection/Binder.cs index 3dafe38..d06899f 100644 --- a/src/coreclr/src/mscorlib/src/System/Reflection/Binder.cs +++ b/src/coreclr/src/mscorlib/src/System/Reflection/Binder.cs @@ -47,12 +47,5 @@ namespace System.Reflection { public abstract Object ChangeType(Object value,Type type,CultureInfo culture); public abstract void ReorderArgumentArray(ref Object[] args, Object state); - - // CanChangeType - // This method checks whether the value can be converted into the property type. - public virtual bool CanChangeType(Object value,Type type,CultureInfo culture) - { - return false; - } } } diff --git a/src/coreclr/src/mscorlib/src/mscorlib.txt b/src/coreclr/src/mscorlib/src/mscorlib.txt index 363be3e..01d593b 100644 --- a/src/coreclr/src/mscorlib/src/mscorlib.txt +++ b/src/coreclr/src/mscorlib/src/mscorlib.txt @@ -1997,7 +1997,6 @@ Serialization_TypeLoadFailure = Unable to load type {0} required for deserializa Serialization_RequireFullTrust = A type '{0}' that is defined in a partially trusted assembly cannot be type forwarded from an assembly with a different Public Key Token or without a public key token. To fix this, please either turn on unsafeTypeForwarding flag in the configuration file or remove the TypeForwardedFrom attribute. ; The following serialization exception messages appear in native resources too (mscorrc.rc) Serialization_TypeResolved = Type is not resolved for member '{0}'. -Serialization_MemberOutOfRange = The deserialized value of the member "{0}" in the class "{1}" is out of range. #endif // FEATURE_SERIALIZATION ; -- 2.7.4