switch to old syntax for build server

This commit is contained in:
Plaisted
2021-01-19 18:53:44 -06:00
parent 4c807691b7
commit a0f0c4d6c7
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
internal class NumericTokenizer : ITokenizer
{
private readonly StringBuilder stringBuilder = new();
private readonly StringBuilder stringBuilder = new StringBuilder();
private const byte Zero = 48;
private const byte Nine = 57;