Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formatting error fixes.... #220

Closed
wants to merge 16 commits into from
3 changes: 0 additions & 3 deletions src/Saunter/Generation/DocumentGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ namespace Saunter.Generation
{
public class DocumentGenerator : IDocumentGenerator
{
public DocumentGenerator()
{
}

public AsyncApiSchema.v2.AsyncApiDocument GenerateDocument(TypeInfo[] asyncApiTypes, AsyncApiOptions options, AsyncApiDocument prototype, IServiceProvider serviceProvider)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System;
using System;
using System.Linq;
using System.Reflection;
using Saunter.AsyncApiSchema.v2;
using Saunter.Attributes;
using Saunter.Generation;
using Shouldly;
using Xunit;
using System.Linq;

namespace Saunter.Tests.Generation.DocumentGeneratorTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,5 @@ public void GetDocument_GeneratesDocumentWithMultipleMessagesPerChannel()
document.ShouldNotBeNull();
}
}


}
}
1 change: 0 additions & 1 deletion test/Saunter.Tests/Generation/OperationTraitsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public void Example_OperationTraits()
}
}


private class TestOperationTraitsFilter : IOperationFilter
{
public void Apply(Operation publishOperation, OperationFilterContext context)
Expand Down
Loading