We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6d5f2 commit 639d162Copy full SHA for 639d162
src/D2L.Bmx/ConsoleWriter.cs
@@ -35,7 +35,7 @@ void IConsoleWriter.WriteUpdateMessage( string text ) {
35
Console.Error.WriteLine();
36
return;
37
}
38
- string[] lines = text.Split( '\n' );
+ string[] lines = text.Split( '\n', StringSplitOptions.TrimEntries );
39
int maxLineLength = lines.Max( l => l.Length );
40
foreach( string line in lines ) {
41
string paddedLine = line.PadRight( maxLineLength );
0 commit comments