Skip to content

Commit

Permalink
Trimming LintInfos returned from Sqf- & ConfigEditor now
Browse files Browse the repository at this point in the history
  • Loading branch information
X39 committed Mar 17, 2020
1 parent 3520a02 commit baf2fb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Arma.Studio.ConfigEditor/ConfigEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ void Virtualmachine_OnLog(object sender, SqfVm.LogEventArgs eventArgs)
Line = line,
Column = column,
Severity = ESeverity.Error,
File = file,
Description = message
File = file.Trim(),
Description = message.Trim()
});
}
}
Expand Down
4 changes: 2 additions & 2 deletions Arma.Studio.SqfEditor/SqfEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ void Virtualmachine_OnLog(object sender, SqfVm.LogEventArgs eventArgs)
Line = line,
Column = column,
Severity = ESeverity.Error,
File = file,
Description = message
File = file.Trim(),
Description = message.Trim()
});
}
}
Expand Down

0 comments on commit baf2fb3

Please sign in to comment.