Skip to content

Commit 8211217

Browse files
committed
very minor refactorings
1 parent 83bf88b commit 8211217

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Simple.HttpClientFactory/MessageHandlers/HttpClientHandlerEx.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System;
1+
#if NETSTANDARD2_0
2+
using System;
23
using System.Collections.Generic;
34
using System.Net;
45
using System.Net.Http;
@@ -7,7 +8,6 @@
78

89
namespace Simple.HttpClientFactory.MessageHandlers
910
{
10-
#if NETSTANDARD2_0
1111
//credit: the idea for storing visited addresses in hash set is taken from https://github.com/NimaAra/Easy.Common/blob/master/Easy.Common/RestClient.cs#L570
1212
//note: Easy.Common is licensed with MIT License (https://github.com/NimaAra/Easy.Common/blob/master/LICENSE)
1313
public class HttpClientHandlerEx : HttpClientHandler
@@ -61,5 +61,5 @@ public struct UriCacheKey : IEquatable<UriCacheKey>
6161
}
6262
}
6363

64-
#endif
6564
}
65+
#endif

0 commit comments

Comments
 (0)