Skip to content

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahelsaig committed Sep 21, 2024
1 parent b383aa1 commit a38ad41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
Expand Down
3 changes: 2 additions & 1 deletion Lombiq.Tests.UI/Helpers/HttpClientHelper.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#nullable enable

using System;
using System.Diagnostics.CodeAnalysis;
using System.Net.Http;
Expand All @@ -10,7 +12,6 @@ public static class HttpClientHelper
public static HttpClient CreateCertificateIgnoringHttpClient(Uri? baseUri = null) =>
new(CreateCertificateIgnoringHttpClientHandler()) { BaseAddress = baseUri };


/// <summary>
/// Creates a normally dangerous HTTP client handler that accepts any certificate, to allow working with self-signed
/// development certificates.
Expand Down

0 comments on commit a38ad41

Please sign in to comment.