MAINT: Apply pre-commit

Remove byte-order-marker pre-commit check as there would be
many adjustments necessary
This commit is contained in:
Martin Thoma
2022-03-05 09:29:23 +01:00
parent f5e33ae38f
commit e64fb6795c
536 changed files with 6267 additions and 5556 deletions

View File

@@ -25,7 +25,7 @@ namespace Pizza
{
return string.Empty;
}
return _customerMap[y, x];
}
@@ -74,8 +74,8 @@ namespace Pizza
/// <returns>True if position is out of range otherwise false.</returns>
private bool IsPositionOutOfRange(int x, int y)
{
return
x < 0 || x > _mapSize - 1 ||
return
x < 0 || x > _mapSize - 1 ||
y < 0 || y > _mapSize - 1;
}
@@ -128,4 +128,4 @@ namespace Pizza
mapToDisplay.Append(Environment.NewLine);
}
}
}
}