Skip to content

Commit

Permalink
fixed missing language feature: 'default' literal
Browse files Browse the repository at this point in the history
The default literal was added in C# v7.1
  • Loading branch information
quexy committed Nov 10, 2021
1 parent 12d9976 commit 38c2fc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Recurly/IPager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public interface IPager<T> : IEnumerable<T>
List<T> Data { get; }

IPager<T> FetchNextPage();
Task<IPager<T>> FetchNextPageAsync(CancellationToken cancellationToken = default);
Task<IPager<T>> FetchNextPageAsync(CancellationToken cancellationToken = default(CancellationToken));
}
}

0 comments on commit 38c2fc3

Please sign in to comment.