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/AssemblyGetExecutingAssemblyMethodThunk.cs')
-rw-r--r--src/coreclr/tools/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs
index ce1d69716a7..78386fbe55c 100644
--- a/src/coreclr/tools/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs
+++ b/src/coreclr/tools/Common/TypeSystem/IL/Stubs/AssemblyGetExecutingAssemblyMethodThunk.cs
@@ -10,7 +10,7 @@ namespace Internal.IL.Stubs
/// is to load something that will let us identify the current assembly and call a class library
/// helper that will let us get the Assembly.
/// </summary>
- internal partial class AssemblyGetExecutingAssemblyMethodThunk : ILStubMethod
+ internal sealed partial class AssemblyGetExecutingAssemblyMethodThunk : ILStubMethod
{
public AssemblyGetExecutingAssemblyMethodThunk(TypeDesc owningType, IAssemblyDesc executingAssembly)
{
@@ -81,7 +81,7 @@ namespace Internal.IL.Stubs
}
}
- internal class AssemblyGetExecutingAssemblyMethodThunkCache
+ internal sealed class AssemblyGetExecutingAssemblyMethodThunkCache
{
private TypeDesc _owningTypeForThunks;
private Unifier _cache;
@@ -97,7 +97,7 @@ namespace Internal.IL.Stubs
return _cache.GetOrCreateValue(executingAssembly);
}
- private class Unifier : LockFreeReaderHashtable<IAssemblyDesc, AssemblyGetExecutingAssemblyMethodThunk>
+ private sealed class Unifier : LockFreeReaderHashtable<IAssemblyDesc, AssemblyGetExecutingAssemblyMethodThunk>
{
private AssemblyGetExecutingAssemblyMethodThunkCache _parent;