Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed May 20, 2023
2 parents 522b7e5 + 3fe09e1 commit 6d74921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<PackageVersion Include="Newtonsoft.Json" Version="13.0.2" />
<PackageVersion Include="NuGet.Protocol" Version="6.5.0" />
<PackageVersion Include="nunit" Version="3.13.3" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.3.1" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.4.2" />
<PackageVersion Include="protobuf-net" Version="3.1.25" />
<PackageVersion Include="RandomFixtureKit" Version="1.0.1" />
<PackageVersion Include="ReactiveProperty" Version="9.1.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ public Lookup(Dictionary<TKey, IGrouping<TKey, TElement>> groupings)
{
get
{
return this.groupings[key];
return this.groupings.TryGetValue(key, out var value) ? value : Enumerable.Empty<TElement>();
}
}

Expand Down

0 comments on commit 6d74921

Please sign in to comment.