Skip to content

Commit cf7235c

Browse files
committed
Remove snarky comment.
1 parent 9672f74 commit cf7235c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Security/Authentication/Certificate/src/CertificateAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ private async Task<AuthenticateResult> ValidateCertificateAsync(X509Certificate2
157157
finally
158158
{
159159
// Disposing the chain does not dispose the elements we potentially built.
160-
// Annoyingly do the full walk manually to dispose.
160+
// Do the full walk manually to dispose.
161161
for (int chainElementIndex = 0; chainElementIndex < chain.ChainElements.Count; ++chainElementIndex)
162162
{
163163
chain.ChainElements[chainElementIndex].Certificate.Dispose();

src/Shared/CertificateGeneration/UnixCertificateManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public override TrustLevel GetTrustLevel(X509Certificate2 certificate)
8181
finally
8282
{
8383
// Disposing the chain does not dispose the elements we potentially built.
84-
// Annoyingly do the full walk manually to dispose.
84+
// Do the full walk manually to dispose.
8585
for (int chainElementIndex = 0; chainElementIndex < chain.ChainElements.Count; ++chainElementIndex)
8686
{
8787
chain.ChainElements[chainElementIndex].Certificate.Dispose();

0 commit comments

Comments
 (0)