Skip to content

Commit

Permalink
chore: suppress IDE0001 message
Browse files Browse the repository at this point in the history
  • Loading branch information
filzrev committed Sep 20, 2023
1 parent fbbb5a1 commit 99e2d8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Docfx.YamlSerialization/YamlSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private IObjectGraphVisitor<IEmitter> CreateEmittingVisitor(IEmitter emitter, IO
if (!IsOptionSet(SerializationOptions.DisableAliases))
{
var anchorAssigner = new AnchorAssigner(Converters);
traversalStrategy.Traverse<Nothing>(graph, anchorAssigner, default);
traversalStrategy.Traverse(graph, anchorAssigner, default);

emittingVisitor = new AnchorAssigningObjectGraphVisitor(emittingVisitor, eventEmitter, anchorAssigner);
}
Expand Down
2 changes: 1 addition & 1 deletion test/Docfx.Build.Engine.Tests/DocumentBuilderTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ public void AddFakeResponse(Uri uri, HttpResponseMessage responseMessage)
_fakeResponses.Add(uri, responseMessage);
}

protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
if (_fakeResponses.ContainsKey(request.RequestUri))
{
Expand Down

0 comments on commit 99e2d8e

Please sign in to comment.