From c90690233380937c000c08869adbc8be3596737e Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 23 Sep 2019 20:48:42 -0700 Subject: [PATCH] Apply suggestions from code review --- src/Components/Ignitor/src/BlazorClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Ignitor/src/BlazorClient.cs b/src/Components/Ignitor/src/BlazorClient.cs index 818d41598b..df93faa3b3 100644 --- a/src/Components/Ignitor/src/BlazorClient.cs +++ b/src/Components/Ignitor/src/BlazorClient.cs @@ -56,7 +56,7 @@ namespace Ignitor private CancellableOperation NextAttachComponentReceived { get; set; } - internal CancellableOperation NextBatchReceived { get; set; } + private CancellableOperation NextBatchReceived { get; set; } private CancellableOperation NextErrorReceived { get; set; } @@ -396,7 +396,7 @@ namespace Ignitor NextJSInteropReceived?.Completion?.TrySetResult(null); } - protected virtual void OnRenderBatch(int id, byte[] data) + private void OnRenderBatch(int id, byte[] data) { var capturedBatch = new CapturedRenderBatch(id, data);