Apply suggestions from code review

This commit is contained in:
Pranav K 2019-09-23 20:48:42 -07:00 committed by GitHub
parent 0e7c873d62
commit c906902333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ namespace Ignitor
private CancellableOperation<CapturedAttachComponentCall> NextAttachComponentReceived { get; set; } private CancellableOperation<CapturedAttachComponentCall> NextAttachComponentReceived { get; set; }
internal CancellableOperation<CapturedRenderBatch> NextBatchReceived { get; set; } private CancellableOperation<CapturedRenderBatch> NextBatchReceived { get; set; }
private CancellableOperation<string> NextErrorReceived { get; set; } private CancellableOperation<string> NextErrorReceived { get; set; }
@ -396,7 +396,7 @@ namespace Ignitor
NextJSInteropReceived?.Completion?.TrySetResult(null); 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); var capturedBatch = new CapturedRenderBatch(id, data);