Skip to content

Commit

Permalink
Removed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebulaxin committed May 11, 2024
1 parent ff46e03 commit 19f8d7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/MonoGame.Content.Builder.Editor/Common/OutputParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class OutputParser
Regex _reFileError = new Regex(@"^(?<filename>([a-zA-Z]:)?/.+?)\W*?: (?<errorMessage>.*?)\r?$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
Regex _reBuildEnd = new Regex(@"^(Build)\W+(?<buildInfo>.*?)\r?$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
Regex _reBuildTime = new Regex(@"^(Time elapsed)\W+(?<buildElapsedTime>.*?)\.\r?$", RegexOptions.Compiled | RegexOptions.IgnoreCase);


public OutputParser()
{
Expand All @@ -61,7 +61,7 @@ internal void Reset()
}

internal void Parse(string text)
{
{
ParseLine(text);
}

Expand Down Expand Up @@ -90,7 +90,7 @@ private void ParseLine(string line)
var prevFilename = Filename;

State = OutputState.Unknown;
Filename = null;
Filename = null;
BuildBeginTime = null;
BuildInfo = null;
BuildElapsedTime = null;
Expand Down

0 comments on commit 19f8d7a

Please sign in to comment.