aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-04 17:56:52 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-04 17:56:52 -0700
commita8447711be717a53fc52a3a14dd33fdb85fc80f2 (patch)
tree419a531afd8de067cba68d1b01b4c3971c7bdc19 /src
parent32d95b9744567c9ead050d154181fadbcd0c8ea7 (diff)
stylecop fixes
Diffstat (limited to 'src')
-rw-r--r--src/csharp/Grpc.Core/Internal/AsyncCallBase.cs5
1 files 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>