Skip to content

Commit d0cc1b3

Browse files
authored
SA1643: Finalizer appropriate summary text (#7196)
* SA1643: Finalizer appropriate summary text * Fixes from code review
1 parent 4c257d3 commit d0cc1b3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/Build/BackEnd/BuildManager/BuildManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ public BuildManager(string hostName)
297297
}
298298

299299
/// <summary>
300-
/// Finalizer
300+
/// Finalizes an instance of the <see cref="BuildManager"/> class.
301301
/// </summary>
302302
~BuildManager()
303303
{

src/Build/BackEnd/Components/Caching/RegisteredTaskObjectCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace Microsoft.Build.BackEnd.Components.Caching
1515
internal class RegisteredTaskObjectCache : RegisteredTaskObjectCacheBase, IBuildComponent, IRegisteredTaskObjectCache, IDisposable
1616
{
1717
/// <summary>
18-
/// Finalizer
18+
/// Finalizes an instance of the <see cref="RegisteredTaskObjectCache"/> class.
1919
/// </summary>
2020
~RegisteredTaskObjectCache()
2121
{

src/Build/BackEnd/Components/Communications/NodeProviderInProc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public NodeProviderInProc()
9090
#endregion
9191

9292
/// <summary>
93-
/// Finalizer
93+
/// Finalizes an instance of the <see cref="NodeProviderInProc"/> class.
9494
/// </summary>
9595
~NodeProviderInProc()
9696
{

src/Build/BackEnd/TaskExecutionHost/TaskExecutionHost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ internal TaskExecutionHost()
161161
}
162162

163163
/// <summary>
164-
/// Finalizer
164+
/// Finalizes an instance of the <see cref="TaskExecutionHost"/> class.
165165
/// </summary>
166166
~TaskExecutionHost()
167167
{

src/Build/Collections/ItemDictionary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ internal Enumerator(IEnumerable<ICollection<T>> listEnumerable)
408408
}
409409

410410
/// <summary>
411-
/// Finalizer
411+
/// Finalizes an instance of the <see cref="Enumerator"/> class.
412412
/// </summary>
413413
~Enumerator()
414414
{

src/Tasks/RCWForCurrentContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public RCWForCurrentContext(T rcw)
6464
}
6565

6666
/// <summary>
67-
/// Finalizer
67+
/// Finalizes an instance of the <see cref="RCWForCurrentContext{T}"/> class.
6868
/// </summary>
6969
~RCWForCurrentContext()
7070
{

0 commit comments

Comments
 (0)