We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9558b commit 2e5c620Copy full SHA for 2e5c620
src/ElectronNET.API/API/Shell.cs
@@ -42,13 +42,9 @@ internal static Shell Instance
42
/// <param name="fullPath">The full path to the directory / file.</param>
43
public Task ShowItemInFolderAsync(string fullPath)
44
{
45
- var tcs = new TaskCompletionSource<object>();
46
-
47
- // Is this really useful?
48
- BridgeConnector.Socket.Once("shell-showItemInFolderCompleted", () => { });
49
BridgeConnector.Socket.Emit("shell-showItemInFolder", fullPath);
50
51
- return tcs.Task;
+ return Task.CompletedTask;
52
}
53
54
/// <summary>
0 commit comments