aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/ClientBase.cs
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-08-21 16:06:30 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-08-21 16:06:30 -0700
commitb7e22b96865f24b70cbd9ddd96b6882e2b3df771 (patch)
tree6325a91ed40407a6f447280b9b58dd3b6ae9d9dd /src/csharp/Grpc.Core/ClientBase.cs
parent849c7ca4b2bbda14dd9531ede3aa31cd86aa8d85 (diff)
parentb7e55a20023b32177cb9b09e8ef0dc0d3cd0aa85 (diff)
Merge github.com:grpc/grpc into y12kdm3
Diffstat (limited to 'src/csharp/Grpc.Core/ClientBase.cs')
-rw-r--r--src/csharp/Grpc.Core/ClientBase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/ClientBase.cs b/src/csharp/Grpc.Core/ClientBase.cs
index 7bc100ca60..903449439b 100644
--- a/src/csharp/Grpc.Core/ClientBase.cs
+++ b/src/csharp/Grpc.Core/ClientBase.cs
@@ -119,7 +119,8 @@ namespace Grpc.Core
internal static string GetAuthUriBase(string target)
{
var match = ChannelTargetPattern.Match(target);
- if (!match.Success) {
+ if (!match.Success)
+ {
return null;
}
return "https://" + match.Groups[2].Value + "/";