Update CoreRT for changes in shared partition
authorJan Kotas <jkotas@microsoft.com>
Sun, 3 Mar 2019 03:21:19 +0000 (19:21 -0800)
committerMarek Safar <marek.safar@gmail.com>
Sun, 3 Mar 2019 11:10:07 +0000 (12:10 +0100)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
src/System.Private.CoreLib/shared/System/Activator.cs

index 4ab5172..203eb23 100644 (file)
@@ -36,11 +36,6 @@ namespace System
         public static object CreateInstance(Type type) =>
             CreateInstance(type, nonPublic: false);
 
-        [DebuggerHidden]
-        [DebuggerStepThrough]
-        public static object CreateInstance(Type type, bool nonPublic) =>
-            CreateInstance(type, nonPublic, wrapExceptions: true);
-
         public static ObjectHandle CreateInstanceFrom(string assemblyFile, string typeName) =>
             CreateInstanceFrom(assemblyFile, typeName, false, ConstructorDefault, null, null, null, null);