Skip to content

Commit 43f4890

Browse files
committed
Remove unneeded suppressions
1 parent 84f6cec commit 43f4890

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/JsonApiDotNetCore.OpenApi.Client/ApiException.cs renamed to src/JsonApiDotNetCore.OpenApi.Client/Exceptions/ApiException.cs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// We cannot rely on generating ApiException as soon as we are generating multiple clients, see https://github.com/RicoSuter/NSwag/issues/2839#issuecomment-776647377.
44
// Instead, we configure NSwag to point to the exception below in the generated code.
55

6-
// ReSharper disable once CheckNamespace
76
namespace JsonApiDotNetCore.OpenApi.Client.Exceptions;
87

98
[UsedImplicitly(ImplicitUseTargetFlags.Members)]

src/JsonApiDotNetCore.OpenApi/ActionDescriptorExtensions.cs

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ public static MethodInfo GetActionMethod(this ActionDescriptor descriptor)
3131
ArgumentGuard.NotNull(descriptor);
3232

3333
return (ControllerParameterDescriptor?)descriptor.Parameters.FirstOrDefault(parameterDescriptor =>
34-
// ReSharper disable once ConstantConditionalAccessQualifier
35-
// Justification: see https://github.com/dotnet/aspnetcore/issues/32538
3634
parameterDescriptor.BindingInfo?.BindingSource == BindingSource.Body);
3735
}
3836
}

0 commit comments

Comments
 (0)