Latest Rider cleanups

This commit is contained in:
Archi
2021-12-12 01:12:54 +01:00
parent 944df1cfc8
commit 4f598d5c8f
54 changed files with 197 additions and 567 deletions

View File

@@ -35,9 +35,7 @@ internal static class CatAPI {
private const string URL = "https://aws.random.cat";
internal static async Task<string?> GetRandomCatURL(WebBrowser webBrowser) {
if (webBrowser == null) {
throw new ArgumentNullException(nameof(webBrowser));
}
ArgumentNullException.ThrowIfNull(webBrowser);
Uri request = new($"{URL}/meow");