From 52b2ed97f71f3db66ff23f30db04a86a1662f208 Mon Sep 17 00:00:00 2001 From: Paul Westcott Date: Sun, 5 Mar 2017 13:25:30 +1100 Subject: [PATCH] Remove ComVisible as per #9371 When lazy was merged, this change was lost. --- src/mscorlib/shared/System/Lazy.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/mscorlib/shared/System/Lazy.cs b/src/mscorlib/shared/System/Lazy.cs index d59f67849fc6..46a019f850d7 100644 --- a/src/mscorlib/shared/System/Lazy.cs +++ b/src/mscorlib/shared/System/Lazy.cs @@ -183,7 +183,6 @@ internal static LazyThreadSafetyMode GetModeFromIsThreadSafe(bool isThreadSafe) /// /// [Serializable] - [ComVisible(false)] [DebuggerTypeProxy(typeof(System_LazyDebugView<>))] [DebuggerDisplay("ThreadSafetyMode={Mode}, IsValueCreated={IsValueCreated}, IsValueFaulted={IsValueFaulted}, Value={ValueForDebugDisplay}")] public class Lazy