From f093e42f632e0c0b672ec403fdf1d059e006cc30 Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Wed, 27 Jun 2018 15:53:24 +0200 Subject: [PATCH] Removes duplicate attributes (dotnet/coreclr#18668) Commit migrated from https://github.com/dotnet/coreclr/commit/38403e661a4202ca4c8a72e4bbd9a263bddeb891 --- src/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.Fast.cs | 2 -- src/libraries/System.Private.CoreLib/src/System/Span.Fast.cs | 2 -- 2 files changed, 4 deletions(-) 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 { -- 2.7.4