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/Stubs/MethodBaseGetCurrentMethodThunk.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs
index 82a729dc3eb..eaed268049d 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/MethodBaseGetCurrentMethodThunk.cs
@@ -12,7 +12,7 @@ namespace Internal.IL.Stubs
/// is to LDTOKEN the method considered "current method" and call into the class library to
/// retrieve the associated MethodBase object instance.
/// </summary>
- internal partial class MethodBaseGetCurrentMethodThunk : ILStubMethod
+ internal sealed partial class MethodBaseGetCurrentMethodThunk : ILStubMethod
{
public MethodBaseGetCurrentMethodThunk(MethodDesc method)
{
@@ -90,7 +90,7 @@ namespace Internal.IL.Stubs
}
}
- internal class MethodBaseGetCurrentMethodThunkCache
+ internal sealed class MethodBaseGetCurrentMethodThunkCache
{
private Unifier _cache;
@@ -104,7 +104,7 @@ namespace Internal.IL.Stubs
return _cache.GetOrCreateValue(currentMethod.GetTypicalMethodDefinition());
}
- private class Unifier : LockFreeReaderHashtable<MethodDesc, MethodBaseGetCurrentMethodThunk>
+ private sealed class Unifier : LockFreeReaderHashtable<MethodDesc, MethodBaseGetCurrentMethodThunk>
{
protected override int GetKeyHashCode(MethodDesc key)
{