From: Marek Safar Date: Wed, 27 Jun 2018 13:53:24 +0000 (+0200) Subject: Removes duplicate attributes (dotnet/coreclr#18668) X-Git-Tag: submit/tizen/20210909.063632~11030^2~4508 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f093e42f632e0c0b672ec403fdf1d059e006cc30;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Removes duplicate attributes (dotnet/coreclr#18668) Commit migrated from https://github.com/dotnet/coreclr/commit/38403e661a4202ca4c8a72e4bbd9a263bddeb891 --- diff --git a/src/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.Fast.cs b/src/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.Fast.cs index cabda7a..4fb039a 100644 --- a/src/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.Fast.cs +++ b/src/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.Fast.cs @@ -23,8 +23,6 @@ namespace System /// ReadOnlySpan represents a contiguous region of arbitrary memory. Unlike arrays, it can point to either managed /// or native memory, or to memory allocated on the stack. It is type- and memory-safe. /// - [DebuggerTypeProxy(typeof(SpanDebugView<>))] - [DebuggerDisplay("{ToString(),raw}")] [NonVersionable] public readonly ref partial struct ReadOnlySpan { diff --git a/src/libraries/System.Private.CoreLib/src/System/Span.Fast.cs b/src/libraries/System.Private.CoreLib/src/System/Span.Fast.cs index 40b461e..b3cfc8d 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Span.Fast.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Span.Fast.cs @@ -23,8 +23,6 @@ namespace System /// Span represents a contiguous region of arbitrary memory. Unlike arrays, it can point to either managed /// or native memory, or to memory allocated on the stack. It is type- and memory-safe. /// - [DebuggerTypeProxy(typeof(SpanDebugView<>))] - [DebuggerDisplay("{ToString(),raw}")] [NonVersionable] public readonly ref partial struct Span {