Skip to content

Commit

Permalink
Bump Meziantou.Analyzer from 2.0.163 to 2.0.169 (#692)
Browse files Browse the repository at this point in the history
* 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] <support@github.com>

* Add missing commas

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stuart Turner <stuart@turner-isageek.com>
  • Loading branch information
dependabot[bot] and viceroypenguin authored Oct 9, 2024
1 parent 74dfa57 commit b6a59b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<GlobalPackageReference Include="Meziantou.Analyzer" Version="2.0.163" />
<GlobalPackageReference Include="Meziantou.Analyzer" Version="2.0.169" />
<GlobalPackageReference Include="PolySharp" Version="1.14.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/SuperLinq/Exclude.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static IEnumerable<T> Exclude<T>(this IEnumerable<T> sequence, int startI
(0, _) => sequence,
(_, IList<T> list) => new ExcludeListIterator<T>(list, startIndex, count),
(_, ICollection<T> collection) => new ExcludeCollectionIterator<T>(collection, startIndex, count),
_ => ExcludeCore(sequence, startIndex, count)
_ => ExcludeCore(sequence, startIndex, count),
};
}

Expand Down
2 changes: 1 addition & 1 deletion Source/SuperLinq/TrySingle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public static TResult TrySingle<T, TCardinality, TResult>(
return n switch
{
1 => source.First(),
0 or _ => default
0 or _ => default,
};
}
else
Expand Down

0 comments on commit b6a59b5

Please sign in to comment.