Skip to content

Commit e733d14

Browse files
committed
fix whitespace
1 parent b41c82f commit e733d14

File tree

1 file changed

+3
-1
lines changed
  • third_party/dotnet/devtools/src/generator/Templates

1 file changed

+3
-1
lines changed

third_party/dotnet/devtools/src/generator/Templates/domain.hbs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ namespace {{rootNamespace}}.{{domain.Name}}
4848
/// </summary>
4949
public async Task<{{dehumanize Name}}CommandResponse> {{dehumanize Name}}({{dehumanize Name}}CommandSettings command{{#if NoParameters}} = null{{/if}}, CancellationToken cancellationToken = default(CancellationToken), int? millisecondsTimeout = null, bool throwExceptionIfResponseNotReceived = true)
5050
{
51-
{{#if NoParameters}}command ??= new {{dehumanize Name}}CommandSettings();{{/if}}
51+
{{#if NoParameters}}
52+
command ??= new {{dehumanize Name}}CommandSettings();
53+
{{/if}}
5254
global::System.Text.Json.Nodes.JsonNode serializedCommand = global::System.Text.Json.JsonSerializer.SerializeToNode(command);
5355
global::System.Text.Json.JsonElement? response = await Session.SendCommand(command.CommandName, serializedCommand, cancellationToken, millisecondsTimeout, throwExceptionIfResponseNotReceived).ConfigureAwait(false);
5456

0 commit comments

Comments
 (0)