Skip to content

Commit

Permalink
Fix compiler error in SerializationComparisonsTests benchmarks (#2708)
Browse files Browse the repository at this point in the history
  • Loading branch information
habbes authored Jul 21, 2023
1 parent 75fa5a7 commit 6f3a47b
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
//---------------------------------------------------------------------

using System;
using System.Text.Json;
using System.Threading.Tasks;
using Microsoft.OData.Edm;
using Microsoft.OData.Json;
Expand Down Expand Up @@ -173,6 +174,10 @@ public void WriteValue(TimeOfDay value)
{
}

public void WriteValue(JsonElement value)
{
}

public Task WriteValueAsync(bool value)
{
return Task.CompletedTask;
Expand Down Expand Up @@ -252,5 +257,10 @@ public Task WriteValueAsync(TimeOfDay value)
{
return Task.CompletedTask;
}

public Task WriteValueAsync(JsonElement value)
{
return Task.CompletedTask;
}
}
}

0 comments on commit 6f3a47b

Please sign in to comment.