Remove unneeded whitespace (#5162)

<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? -->
## Summary of the Pull Request
Every single time a PR is run, there are a bunch of warnings about whitespace in the .cs files, so I ran the code format on those files, without changing their contents, so it won't be flagged anymore.
<!-- Other than the issue solved, is this relevant to any other issues/existing PRs? --> 
## References

<!-- Please review the items on the PR checklist before submitting-->
## PR Checklist
* [X] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA
* [X] Tests added/passed

<!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here -->
## Detailed Description of the Pull Request / Additional comments

<!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well -->
## Validation Steps Performed
Ran the code-format utility on the .cs files
This commit is contained in:
pi1024e 2020-03-30 10:33:32 -04:00 committed by GitHub
parent 28d108bf32
commit 2872f147f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 25 additions and 25 deletions

View file

@ -481,7 +481,7 @@ namespace Conhost.UIA.Tests
TextPatternRange testRange = visibleRanges.First().Clone();
// assumes that range is a line range at the top of the screen buffer
Action<TextPatternRange> testTopBoundary = delegate(TextPatternRange range)
Action<TextPatternRange> testTopBoundary = delegate (TextPatternRange range)
{
// the first visible range is at the top of the screen
// buffer, we shouldn't be able to move the starting endpoint up

View file

@ -31,7 +31,7 @@ namespace Conhost.UIA.Tests.Common
~ShortcutHelper()
{
this.Dispose(false);
this.Dispose(false);
}
public void Dispose()

View file

@ -119,7 +119,7 @@ namespace Conhost.UIA.Tests
app.UIRoot.SendKeys("H");
// Move to middle-ish from here. 10 Bs and 10 Cs should about do it.
for (int i=0; i < 10; i++)
for (int i = 0; i < 10; i++)
{
app.UIRoot.SendKeys("BC");
cursorExpected.Y++;

View file

@ -13,7 +13,7 @@ namespace VTApp
{
class Program
{
static string CSI = ((char)0x1b)+"[";
static string CSI = ((char)0x1b) + "[";
static void Main(string[] args)
{
Console.WindowHeight = 25;
@ -271,11 +271,11 @@ namespace VTApp
Console.Write("49m");
break;
case '<':
Console.Write('\xD'); // carriage return \r
break;
Console.Write('\xD'); // carriage return \r
break;
case '>':
Console.Write('\xA'); // line feed/new line \n
break;
Console.Write('\xA'); // line feed/new line \n
break;
case '`':
Console.Write("z");
break;
@ -385,7 +385,7 @@ namespace VTApp
for (int j = 0; j < 80; j++)
{
if (j == 0)
Console.Write(i%10);
Console.Write(i % 10);
else
Console.Write("Z");
}