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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs b/src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs
index 7a1ccfadb8b..cd0e77453cc 100644
--- a/src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs
+++ b/src/coreclr/tools/Common/TypeSystem/Ecma/CachingMetadataStringDecoder.cs
@@ -1,9 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
-using System;
using System.Reflection.Metadata;
-using System.Runtime.CompilerServices;
using Debug = System.Diagnostics.Debug;
using Internal.NativeFormat;
@@ -173,7 +171,7 @@ namespace Internal.TypeSystem.Ecma
return Add(hashCode, s);
}
- public unsafe override string GetString(byte* bytes, int byteCount)
+ public override unsafe string GetString(byte* bytes, int byteCount)
{
bool isAscii;
int hashCode = TypeHashingAlgorithms.ComputeASCIINameHashCode(bytes, byteCount, out isAscii);