We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e901b84 commit 981998bCopy full SHA for 981998b
Rubberduck.SmartIndenter/Indenter.cs
@@ -71,7 +71,7 @@ public void Indent(IVBComponent component)
71
}
72
73
var codeLines = module.GetLines(1, lineCount).Replace("\r", string.Empty).Split('\n');
74
- var indented = Indent(codeLines, component.Name).ToArray();
+ var indented = Indent(codeLines, component.Name);
75
76
module.DeleteLines(1, lineCount);
77
module.InsertLines(1, string.Join("\r\n", indented));
0 commit comments