Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/SpanDebugView.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/SpanDebugView.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/SpanDebugView.cs b/src/System.Private.CoreLib/shared/System/SpanDebugView.cs
index caa12ef9e..f79c67306 100644
--- a/src/System.Private.CoreLib/shared/System/SpanDebugView.cs
+++ b/src/System.Private.CoreLib/shared/System/SpanDebugView.cs
@@ -3,8 +3,6 @@
// See the LICENSE file in the project root for more information.
using System.Diagnostics;
-using System.Reflection;
-using System.Runtime.CompilerServices;
namespace System
{
@@ -14,7 +12,7 @@ namespace System
public SpanDebugView(Span<T> span)
{
- _array = span.ToArray();
+ _array = span.ToArray();
}
public SpanDebugView(ReadOnlySpan<T> span)