Round 2 of nullable checks

This commit is contained in:
JustArchi
2020-08-23 20:45:24 +02:00
parent f99043db30
commit b3d476dea4
34 changed files with 187 additions and 338 deletions

View File

@@ -48,7 +48,7 @@ namespace ArchiSteamFarm.CustomPlugins.ExamplePlugin {
throw new ArgumentNullException(nameof(response.Content.Link));
}
return Uri.EscapeUriString(response.Content.Link);
return Uri.EscapeUriString(response.Content!.Link!);
}
[SuppressMessage("ReSharper", "ClassCannotBeInstantiated")]