File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/HotChocolate/OpenApi/src/HotChocolate.OpenApi Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ public static IRequestExecutorBuilder AddOpenApi(
18
18
MutationConventionOptions mutationConventionOptions = default )
19
19
{
20
20
ArgumentNullException . ThrowIfNull ( builder ) ;
21
- ArgumentException . ThrowIfNullOrEmpty ( nameof ( httpClientName ) ) ;
22
- ArgumentException . ThrowIfNullOrEmpty ( nameof ( openApiDocumentText ) ) ;
21
+ ArgumentException . ThrowIfNullOrEmpty ( httpClientName ) ;
22
+ ArgumentException . ThrowIfNullOrEmpty ( openApiDocumentText ) ;
23
23
24
24
// Create OpenAPI document from the provided string.
25
25
var openApiStringReader = new OpenApiStringReader ( ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static string CreateInputTypeName(
22
22
23
23
public static string CreateName ( string name )
24
24
{
25
- ArgumentException . ThrowIfNullOrEmpty ( nameof ( name ) ) ;
25
+ ArgumentException . ThrowIfNullOrEmpty ( name ) ;
26
26
27
27
var stringBuilder = new StringBuilder ( ) ;
28
28
You can’t perform that action at this time.
0 commit comments