Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoroz committed Dec 7, 2024
1 parent a84c2dc commit 8ade3b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/NodeApi/Runtime/TracingJSRuntime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2816,9 +2816,7 @@ public override node_embedding_status EmbeddingCloseNodeApiScope(
node_embedding_runtime runtime,
node_embedding_node_api_scope node_api_scope)
{
return TraceCall(
[Format(node_api_scope)],
() => _runtime.EmbeddingCloseNodeApiScope(runtime, node_api_scope));
return _runtime.EmbeddingCloseNodeApiScope(runtime, node_api_scope);
}

#endregion
Expand Down

0 comments on commit 8ade3b3

Please sign in to comment.