Skip to content

Commit

Permalink
Merge pull request #108 from Cysharp/hadashiA/fix-warns
Browse files Browse the repository at this point in the history
Fix some warnings
  • Loading branch information
neuecc authored Feb 16, 2024
2 parents 266518a + 3c23e4b commit d74d253
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/R3.Maui/R3.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Core" Version="8.0" />
<PackageReference Include="Microsoft.Maui.Core" Version="8.0.3" />
<PackageReference Include="Microsoft.Maui.Controls.Core" Version="8.0.3" />
</ItemGroup>

Expand Down
2 changes: 2 additions & 0 deletions src/R3/Operators/AggregateByAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ internal sealed class AggregateByAsync<TSource, TKey, TAccumulate>(
IEqualityComparer<TKey>? keyComparer,
CancellationToken cancellationToken)
: TaskObserverBase<TSource, IEnumerable<KeyValuePair<TKey, TAccumulate>>>(cancellationToken)
where TKey : notnull
{
readonly Dictionary<TKey, TAccumulate> dictionary = new(keyComparer);

Expand Down Expand Up @@ -74,6 +75,7 @@ internal sealed class AggregateByAsyncSeedSelector<TSource, TKey, TAccumulate>(
IEqualityComparer<TKey>? keyComparer,
CancellationToken cancellationToken)
: TaskObserverBase<TSource, IEnumerable<KeyValuePair<TKey, TAccumulate>>>(cancellationToken)
where TKey : notnull
{
readonly Dictionary<TKey, TAccumulate> dictionary = new(keyComparer);

Expand Down

0 comments on commit d74d253

Please sign in to comment.