Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-08-26 18:58:38 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-08-26 18:58:38 +0300
commitee3acec16b37bec5016da129e1e3840097ca629b (patch)
treebec311e66bacbd51dff35f49cf2c8bc354d072c0
parent4b5651696b71eea9bb81a9ede5f4d7c394c4d2c9 (diff)
Remove extraneous parenthesis
-rw-r--r--src/System.Net.Http/src/System/Net/Http/HttpClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Net.Http/src/System/Net/Http/HttpClient.cs b/src/System.Net.Http/src/System/Net/Http/HttpClient.cs
index 7203d9c397..f7d2963177 100644
--- a/src/System.Net.Http/src/System/Net/Http/HttpClient.cs
+++ b/src/System.Net.Http/src/System/Net/Http/HttpClient.cs
@@ -667,7 +667,7 @@ namespace System.Net.Http
else
{
#if MONO
- if (!request.RequestUri.IsAbsoluteUri || request.RequestUri.Scheme == Uri.UriSchemeFile && request.RequestUri.OriginalString.StartsWith ("/", StringComparison.Ordinal)))
+ if (!request.RequestUri.IsAbsoluteUri || request.RequestUri.Scheme == Uri.UriSchemeFile && request.RequestUri.OriginalString.StartsWith ("/", StringComparison.Ordinal))
#else
// If the request Uri is an absolute Uri, just use it. Otherwise try to combine it with the base Uri.
if (!request.RequestUri.IsAbsoluteUri)