File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -50,19 +50,17 @@ public Task Cancel()
50
50
51
51
public ValueTask ResetCancellation ( ) => _cancellationTokenSource . Reset ( ) ;
52
52
53
- protected override async ValueTask DisposeAsync ( bool disposing )
53
+ public override async ValueTask DisposeAsync ( )
54
54
{
55
- if ( disposing )
56
- await _cancellationTokenSource . DisposeAsync ( ) ;
55
+ await _cancellationTokenSource . DisposeAsync ( ) ;
57
56
58
- await base . DisposeAsync ( disposing ) ;
57
+ await base . DisposeAsync ( ) ;
59
58
}
60
59
61
- protected override void Dispose ( bool disposing )
60
+ public override void Dispose ( )
62
61
{
63
- if ( disposing )
64
- _cancellationTokenSource . Dispose ( ) ;
62
+ _cancellationTokenSource . Dispose ( ) ;
65
63
66
- base . Dispose ( disposing ) ;
64
+ base . Dispose ( ) ;
67
65
}
68
66
}
Original file line number Diff line number Diff line change 45
45
</ItemGroup >
46
46
47
47
<ItemGroup >
48
- <PackageReference Include =" Soenneker.Quark.Components" Version =" 3.0.13 " />
48
+ <PackageReference Include =" Soenneker.Quark.Components" Version =" 3.0.16 " />
49
49
<PackageReference Include =" Soenneker.Utils.AtomicResources" Version =" 3.0.5" />
50
50
</ItemGroup >
51
51
</Project >
You can’t perform that action at this time.
0 commit comments