Skip to content

Commit b8d5ea3

Browse files
authored
Merge pull request #4648 from dotnet/merges/2.9.x-to-master
Merge 2.9.x to master
2 parents 2c2099e + defe592 commit b8d5ea3

File tree

5 files changed

+5
-19
lines changed

5 files changed

+5
-19
lines changed

src/NetAnalyzers/Core/Microsoft.CodeQuality.Analyzers/ApiDesignGuidelines/ImplementIDisposableCorrectly.cs

-8
Original file line numberDiff line numberDiff line change
@@ -493,12 +493,8 @@ private static bool IsDisposeBoolCall(IInvocationOperation invocationExpression,
493493
/// </summary>
494494
private sealed class DisposeImplementationValidator
495495
{
496-
// this type will be created per compilation
497-
// this is actually a bug - https://github.com/dotnet/roslyn-analyzers/issues/845
498-
#pragma warning disable RS1008
499496
private readonly IMethodSymbol _suppressFinalizeMethod;
500497
private readonly INamedTypeSymbol _type;
501-
#pragma warning restore RS1008
502498
private bool _callsDisposeBool;
503499
private bool _callsSuppressFinalize;
504500

@@ -625,11 +621,7 @@ private bool IsSuppressFinalizeCall(IInvocationOperation invocationExpression)
625621
/// </summary>
626622
private sealed class FinalizeImplementationValidator
627623
{
628-
// Avoid storing per-compilation data into the fields of a diagnostic analyzer.
629-
// this is actually a bug - https://github.com/dotnet/roslyn-analyzers/issues/845
630-
#pragma warning disable RS1008
631624
private readonly INamedTypeSymbol _type;
632-
#pragma warning restore RS1008
633625
private bool _callDispose;
634626

635627
public FinalizeImplementationValidator(INamedTypeSymbol type)

src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Security/Helpers/ObjectGraphOptions.cs

-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ public ObjectGraphOptions(
5757
/// <summary>
5858
/// Serialization with Newtonsoft Json.NET.
5959
/// </summary>
60-
[SuppressMessage("Documentation", "CA1200:Avoid using cref tags with a prefix", Justification = "Type not referenced by assembly.")]
6160
public bool NewtonsoftJsonNetSerialization { get; private set; }
6261

6362
/// <summary>

src/PerformanceSensitiveAnalyzers/UnitTests/VisualBasicPerformanceCodeFixVerifier`2.cs

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
using Microsoft.CodeAnalysis.Testing.Verifiers;
88
using Microsoft.CodeAnalysis.VisualBasic.Testing;
99

10-
#pragma warning disable CA1000 // Do not declare static members on generic types
11-
1210
namespace Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.UnitTests
1311
{
1412
public static partial class VisualBasicPerformanceCodeFixVerifier<TAnalyzer, TCodeFix>

src/Utilities/Compiler/PooledObjects/ArrayBuilder.cs

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using System.Diagnostics;
77
using System.Threading;
88

9-
#pragma warning disable CA1710 // Rename Microsoft.CodeAnalysis.ArrayBuilder<T> to end in 'Collection'.
109
#pragma warning disable CA1000 // Do not declare static members on generic types
1110

1211
namespace Analyzer.Utilities.PooledObjects
@@ -99,7 +98,7 @@ public T this[int index]
9998
}
10099

101100
/// <summary>
102-
/// Write <paramref name="value"/> to slot <paramref name="index"/>.
101+
/// Write <paramref name="value"/> to slot <paramref name="index"/>.
103102
/// Fills in unallocated slots preceding the <paramref name="index"/>, if any.
104103
/// </summary>
105104
public void SetItem(int index, T value)
@@ -306,7 +305,7 @@ public T[] ToArrayAndFree()
306305
#region Poolable
307306

308307
// To implement Poolable, you need two things:
309-
// 1) Expose Freeing primitive.
308+
// 1) Expose Freeing primitive.
310309
private void Free()
311310
{
312311
var pool = _pool;
@@ -317,9 +316,9 @@ private void Free()
317316
// After about 50 (just 67) we have a long tail of infrequently used builder sizes.
318317
// However we have builders with size up to 50K (just one such thing)
319318
//
320-
// We do not want to retain (potentially indefinitely) very large builders
319+
// We do not want to retain (potentially indefinitely) very large builders
321320
// while the chance that we will need their size is diminishingly small.
322-
// It makes sense to constrain the size to some "not too small" number.
321+
// It makes sense to constrain the size to some "not too small" number.
323322
// Overall perf does not seem to be very sensitive to this number, so I picked 128 as a limit.
324323
if (_builder.Capacity < 128)
325324
{
@@ -414,7 +413,7 @@ internal Dictionary<K, ImmutableArray<T>> ToDictionary<K>(Func<T, K> keySelector
414413
}
415414

416415
// bucketize
417-
// prevent reallocation. it may not have 'count' entries, but it won't have more.
416+
// prevent reallocation. it may not have 'count' entries, but it won't have more.
418417
var accumulator = new Dictionary<K, ArrayBuilder<T>>(Count, comparer);
419418
for (int i = 0; i < Count; i++)
420419
{

src/Utilities/Compiler/PooledObjects/PooledHashSet.cs

-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
using System.Diagnostics;
88
using System.Threading;
99

10-
#pragma warning disable CA1710 // Rename Microsoft.CodeAnalysis.PooledHashSet<T> to end in 'Collection'.
1110
#pragma warning disable CA1000 // Do not declare static members on generic types
12-
#pragma warning disable CA2237 // Add [Serializable] to PooledHashSet as this type implements ISerializable
1311

1412
namespace Analyzer.Utilities.PooledObjects
1513
{

0 commit comments

Comments
 (0)