Skip to content

Commit

Permalink
fixed some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bachuv committed Jan 30, 2025
1 parent b4a7a24 commit d0a352f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static OperationTelemetry CreateTelemetry(Activity activity)
private static T CreateTelemetryCore<T>(Activity activity)
where T : OperationTelemetry, new()
{
T telemetry = new()
T telemetry = new ()
{
Name = activity.DisplayName,
Id = activity.SpanId.ToString(),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.DurableTask;
Expand Down Expand Up @@ -77,7 +76,6 @@ public override Task<string> ScheduleNewOrchestrationInstanceAsync(
StartOrchestrationOptions? options = null,
CancellationToken cancellation = default)
{

return this.inner.ScheduleNewOrchestrationInstanceAsync(orchestratorName, input, options, cancellation);
}

Expand Down

0 comments on commit d0a352f

Please sign in to comment.