diff --git a/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs b/src/csharp/Grpc.Core/Internal/AsyncCallBase.cs
index 7cf0f6ff8476ad0bc6c9d4b6aff24e4443083daf..fc5bee40e29bbc2d6b0ff012ea033acb737b7f7f 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>