Skip to content

Commit c906902

Browse files
authored
Apply suggestions from code review
1 parent 0e7c873 commit c906902

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/Ignitor/src/BlazorClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public BlazorClient()
5656

5757
private CancellableOperation<CapturedAttachComponentCall> NextAttachComponentReceived { get; set; }
5858

59-
internal CancellableOperation<CapturedRenderBatch> NextBatchReceived { get; set; }
59+
private CancellableOperation<CapturedRenderBatch> NextBatchReceived { get; set; }
6060

6161
private CancellableOperation<string> NextErrorReceived { get; set; }
6262

@@ -396,7 +396,7 @@ private void OnBeginInvokeJS(int asyncHandle, string identifier, string argsJson
396396
NextJSInteropReceived?.Completion?.TrySetResult(null);
397397
}
398398

399-
protected virtual void OnRenderBatch(int id, byte[] data)
399+
private void OnRenderBatch(int id, byte[] data)
400400
{
401401
var capturedBatch = new CapturedRenderBatch(id, data);
402402

0 commit comments

Comments
 (0)