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(
1818 MutationConventionOptions mutationConventionOptions = default )
1919 {
2020 ArgumentNullException . ThrowIfNull ( builder ) ;
21- ArgumentException . ThrowIfNullOrEmpty ( nameof ( httpClientName ) ) ;
22- ArgumentException . ThrowIfNullOrEmpty ( nameof ( openApiDocumentText ) ) ;
21+ ArgumentException . ThrowIfNullOrEmpty ( httpClientName ) ;
22+ ArgumentException . ThrowIfNullOrEmpty ( openApiDocumentText ) ;
2323
2424 // Create OpenAPI document from the provided string.
2525 var openApiStringReader = new OpenApiStringReader ( ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public static string CreateInputTypeName(
2222
2323 public static string CreateName ( string name )
2424 {
25- ArgumentException . ThrowIfNullOrEmpty ( nameof ( name ) ) ;
25+ ArgumentException . ThrowIfNullOrEmpty ( name ) ;
2626
2727 var stringBuilder = new StringBuilder ( ) ;
2828
You can’t perform that action at this time.
0 commit comments