From a8447711be717a53fc52a3a14dd33fdb85fc80f2 Mon Sep 17 00:00:00 2001
From: Jan Tattermusch <jtattermusch@google.com>
Date: Mon, 4 May 2015 17:56:52 -0700
Subject: [PATCH] stylecop fixes

---
 src/csharp/Grpc.Core/Internal/AsyncCallBase.cs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs b/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs
index 7cf0f6ff84..fc5bee40e2 100644
--- a/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs
+++ b/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs
@@ -226,7 +226,8 @@ namespace Grpc.Core.Internal
             Preconditions.CheckState(readCompletionDelegate == null, "Only one read can be pending at a time");
         }
 
-        protected void CheckNotCancelled() {
+        protected void CheckNotCancelled()
+        {
             if (cancelRequested)
             {
                 throw new OperationCanceledException("Remote call has been cancelled.");
@@ -301,8 +302,6 @@ namespace Grpc.Core.Internal
             });
         }
 
-
-
         /// <summary>
         /// Handles send completion.
         /// </summary>
-- 
GitLab