Skip to content

Commit 42617e4

Browse files
committed
Remove debug prints and unwanted changes
1 parent e7294ce commit 42617e4

File tree

11 files changed

+1715
-804
lines changed

11 files changed

+1715
-804
lines changed

src/Components/Components.sln

Lines changed: 536 additions & 0 deletions
Large diffs are not rendered by default.

src/Components/Components.slnf

Lines changed: 423 additions & 1 deletion
Large diffs are not rendered by default.

src/Components/Web.JS/src/GlobalExports.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import { getNextChunk } from './StreamingInterop';
1717
import { RootComponentsFunctions } from './Rendering/JSRootComponents';
1818
import { attachWebRendererInterop } from './Rendering/WebRendererInteropMethods';
1919
import { WebStartOptions } from './Platform/WebStartOptions';
20-
import { DotNet } from '@microsoft/dotnet-js-interop';
2120
import { RuntimeAPI } from '@microsoft/dotnet-runtime';
2221
import { JSEventRegistry } from './Services/JSEventRegistry';
2322

src/Components/Web.JS/src/Platform/Circuits/CircuitManager.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,6 @@ export class CircuitManager implements DotNet.DotNetCallDispatcher {
245245

246246
// Implements DotNet.DotNetCallDispatcher
247247
public endInvokeJSFromDotNet(asyncHandle: number, succeeded: boolean, argsJson: any): void {
248-
// console.log("signalr endInvokeJSFromDotNet", asyncHandle, succeeded, argsJson);
249-
250248
this.throwIfDispatchingWhenDisposed();
251249
this._connection!.send('EndInvokeJSFromDotNet', asyncHandle, succeeded, argsJson);
252250
}

src/Components/Web.JS/src/Platform/Mono/MonoPlatform.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,6 @@ function attachInteropInvoker(): void {
265265
);
266266
},
267267
endInvokeJSFromDotNet: (asyncHandle, succeeded, serializedArgs): void => {
268-
// console.log("mono endInvokeJSFromDotNet", asyncHandle, succeeded, serializedArgs);
269268
Blazor._internal.dotNetExports!.EndInvokeJS(serializedArgs);
270269
},
271270
sendByteArray: (id: number, data: Uint8Array): void => {

src/Components/Web.JS/src/Platform/WebView/WebViewIpcSender.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ export function sendBeginInvokeDotNetFromJS(callId: number, assemblyName: string
1616
}
1717

1818
export function sendEndInvokeJSFromDotNet(asyncHandle: number, succeeded: boolean, argsJson: any): void {
19-
// console.log("webview sendEndInvokeJSFromDotNet", asyncHandle, succeeded, argsJson);
20-
2119
send('EndInvokeJS', asyncHandle, succeeded, argsJson);
2220
}
2321

src/Components/WebAssembly/WebAssembly.Authentication/test/RemoteAuthenticationServiceTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Diagnostics.CodeAnalysis;
54
using System.Security.Claims;
65
using System.Text.Json;
76
using Microsoft.AspNetCore.Components.WebAssembly.Authentication.Internal;

src/Components/WebAssembly/WebAssembly.Authentication/test/RemoteAuthenticatorCoreTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
using System.Diagnostics.CodeAnalysis;
54
using System.Runtime.ExceptionServices;
65
using System.Security.Claims;
76
using Microsoft.AspNetCore.Components.Authorization;

src/Components/WebView/WebView/src/IpcSender.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public void AttachToDocument(int componentId, string selector)
5151

5252
public void BeginInvokeJS(JSInvocationInfo invocationInfo)
5353
{
54-
// TODO(OR): Make sure the client side works with this
5554
var invocationInfoJson = invocationInfo.ToJson();
5655
DispatchMessageWithErrorHandling(IpcCommon.Serialize(IpcCommon.OutgoingMessageType.BeginInvokeJS, invocationInfoJson));
5756
}

src/JSInterop/JSInterop.sln

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)