You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/NetAnalyzers/Core/Microsoft.CodeQuality.Analyzers/Maintainability/AvoidUninstantiatedInternalClasses.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ public override void Initialize(AnalysisContext analysisContext)
Copy file name to clipboardExpand all lines: src/Utilities/Compiler/Options/Unit.cs
+6-2
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,9 @@ internal struct Unit : IEquatable<Unit>
45
45
/// <param name="first">The first <see cref="Unit"/> value to compare.</param>
46
46
/// <param name="second">The second <see cref="Unit"/> value to compare.</param>
47
47
/// <returns>Because <see cref="Unit"/> has a single value, this always returns <c>true</c>.</returns>
48
-
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="first",Justification="Parameter required for operator overloading."),SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="second",Justification="Parameter required for operator overloading.")]
48
+
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="first",Justification="Parameter required for operator overloading.")]
49
+
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="second",Justification="Parameter required for operator overloading.")]
50
+
[SuppressMessage("Style","IDE0060:Remove unused parameter",Justification="Parameter required for operator overloading.")]
@@ -54,7 +56,9 @@ internal struct Unit : IEquatable<Unit>
54
56
/// <param name="first">The first <see cref="Unit"/> value to compare.</param>
55
57
/// <param name="second">The second <see cref="Unit"/> value to compare.</param>
56
58
/// <returns>Because <see cref="Unit"/> has a single value, this always returns <c>false</c>.</returns>
57
-
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="first",Justification="Parameter required for operator overloading."),SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="second",Justification="Parameter required for operator overloading.")]
59
+
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="first",Justification="Parameter required for operator overloading.")]
60
+
[SuppressMessage("Microsoft.Usage","CA1801:ReviewUnusedParameters",MessageId="second",Justification="Parameter required for operator overloading.")]
61
+
[SuppressMessage("Style","IDE0060:Remove unused parameter",Justification="Parameter required for operator overloading.")]
Copy file name to clipboardExpand all lines: src/Utilities/FlowAnalysis/FlowAnalysis/Framework/DataFlow/DictionaryAnalysisData.cs
+2
Original file line number
Diff line number
Diff line change
@@ -138,7 +138,9 @@ public bool Remove(KeyValuePair<TKey, TValue> item)
138
138
returnRemove(item.Key);
139
139
}
140
140
141
+
#pragma warning disable CS8767// Nullability of reference types in type of parameter doesn't match implicitly implemented member because of nullability attributes. https://github.com/dotnet/roslyn/issues/42552
#pragma warning restore CS8767// Nullability of reference types in type of parameter doesn't match implicitly implemented member because of nullability attributes.
0 commit comments