Correct the use of a parameter 'autoSpace' in the constructor
This commit is contained in:
parent
d3bdb987b0
commit
e096d7e0b1
|
|
@ -545,7 +545,7 @@ namespace Microsoft.AspNetCore.Blazor.Razor
|
|||
public CSharpCodeWritingScope(CodeWriter writer, int tabSize = 4, bool autoSpace = true)
|
||||
{
|
||||
_writer = writer;
|
||||
_autoSpace = true;
|
||||
_autoSpace = autoSpace;
|
||||
_tabSize = tabSize;
|
||||
_startIndent = -1; // Set in WriteStartScope
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue