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/IL/MethodIL.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/MethodIL.cs8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/MethodIL.cs b/src/coreclr/tools/Common/TypeSystem/IL/MethodIL.cs
index 2f8b5424919..13aee813f36 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/MethodIL.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/MethodIL.cs
@@ -1,14 +1,12 @@
// 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 Internal.TypeSystem;
namespace Internal.IL
{
//
- // This duplicates types from System.Reflection.Metadata to avoid layering issues, and
+ // This duplicates types from System.Reflection.Metadata to avoid layering issues, and
// because of the System.Reflection.Metadata constructors are not public anyway.
//
@@ -73,7 +71,7 @@ namespace Internal.IL
/// (typically a <see cref="MethodDesc"/>, <see cref="FieldDesc"/>, <see cref="TypeDesc"/>,
/// or <see cref="MethodSignature"/>).
/// </summary>
- public abstract Object GetObject(int token, NotFoundBehavior notFoundBehavior = NotFoundBehavior.Throw);
+ public abstract object GetObject(int token, NotFoundBehavior notFoundBehavior = NotFoundBehavior.Throw);
public override string ToString()
{
@@ -113,7 +111,7 @@ namespace Internal.IL
/// </summary>
public abstract ILExceptionRegion[] GetExceptionRegions();
- public override sealed MethodILScope GetMethodILScopeDefinition()
+ public sealed override MethodILScope GetMethodILScopeDefinition()
{
return GetMethodILDefinition();
}