Appboy.Utilities.Json.Parser.EatWhitespace C# (CSharp) Method

EatWhitespace() private method

private EatWhitespace ( ) : void
return void
            private void EatWhitespace()
            {
                while (WhiteSpace.IndexOf(this.PeekChar) != -1)
                {
                    this.json.Read();

                    if (this.json.Peek() == -1)
                    {
                        break;
                    }
                }
            }