Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
yurvon-screamo committed Jul 29, 2024
1 parent f0c2bf5 commit 34587b2
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 13 deletions.
5 changes: 1 addition & 4 deletions src/Saunter/DocumentMiddleware/AsyncApiMiddleware.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
using System.Globalization;
using System.IO;
using System.IO;
using System.Net;
using System.Threading.Tasks;
using LEGO.AsyncAPI;
using LEGO.AsyncAPI.Models;
using LEGO.AsyncAPI.Writers;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Options;
using Saunter.Options;
Expand Down
3 changes: 1 addition & 2 deletions src/Saunter/Options/AsyncApiOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Linq;
using System.Reflection;
using LEGO.AsyncAPI.Models;
using Microsoft.Extensions.Options;
using Saunter.Options.Filters;

namespace Saunter.Options
Expand Down Expand Up @@ -78,6 +77,6 @@ public void AddOperationFilter<T>() where T : IOperationFilter
/// </summary>
public AsyncApiMiddlewareOptions Middleware { get; } = new AsyncApiMiddlewareOptions();

public ConcurrentDictionary<string, AsyncApiDocument> NamedApis { get; private set; } = new();
public ConcurrentDictionary<string, AsyncApiDocument> NamedApis { get; set; } = new();
}
}
3 changes: 1 addition & 2 deletions src/Saunter/SharedKernel/AsyncApiDocumentSerializeCloner.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using LEGO.AsyncAPI;
using LEGO.AsyncAPI;
using LEGO.AsyncAPI.Models;
using LEGO.AsyncAPI.Readers;
using Microsoft.Extensions.Logging;
Expand Down
1 change: 0 additions & 1 deletion src/Saunter/SharedKernel/AsyncApiSchemaGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using LEGO.AsyncAPI.Bindings;
using LEGO.AsyncAPI.Models;
using Saunter.SharedKernel.Interfaces;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Reflection.Metadata;
using Saunter.AttributeProvider.Attributes;
using Shouldly;
using Xunit;
using YamlDotNet.Core.Tokens;

namespace Saunter.Tests.AttributeProvider.DocumentGenerationTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Linq;
using Saunter.AttributeProvider.Attributes;
using Shouldly;
using Xunit;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Linq;
using Saunter.AttributeProvider.Attributes;
using Shouldly;
using Xunit;
Expand Down

0 comments on commit 34587b2

Please sign in to comment.