Skip to content

Commit b6a59b5

Browse files
Bump Meziantou.Analyzer from 2.0.163 to 2.0.169 (#692)
* Bump Meziantou.Analyzer from 2.0.163 to 2.0.169 Bumps [Meziantou.Analyzer](https://github.com/meziantou/Meziantou.Analyzer) from 2.0.163 to 2.0.169. - [Release notes](https://github.com/meziantou/Meziantou.Analyzer/releases) - [Commits](meziantou/Meziantou.Analyzer@2.0.163...2.0.169) --- updated-dependencies: - dependency-name: Meziantou.Analyzer dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Add missing commas --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stuart Turner <[email protected]>
1 parent 74dfa57 commit b6a59b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Directory.Packages.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<GlobalPackageReference Include="Meziantou.Analyzer" Version="2.0.163" />
35+
<GlobalPackageReference Include="Meziantou.Analyzer" Version="2.0.169" />
3636
<GlobalPackageReference Include="PolySharp" Version="1.14.1" />
3737
</ItemGroup>
3838
</Project>

Source/SuperLinq/Exclude.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static IEnumerable<T> Exclude<T>(this IEnumerable<T> sequence, int startI
4242
(0, _) => sequence,
4343
(_, IList<T> list) => new ExcludeListIterator<T>(list, startIndex, count),
4444
(_, ICollection<T> collection) => new ExcludeCollectionIterator<T>(collection, startIndex, count),
45-
_ => ExcludeCore(sequence, startIndex, count)
45+
_ => ExcludeCore(sequence, startIndex, count),
4646
};
4747
}
4848

Source/SuperLinq/TrySingle.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public static TResult TrySingle<T, TCardinality, TResult>(
135135
return n switch
136136
{
137137
1 => source.First(),
138-
0 or _ => default
138+
0 or _ => default,
139139
};
140140
}
141141
else

0 commit comments

Comments
 (0)