UnityEditor.Json.Parser.EatWhitespace C# (CSharp) Method

EatWhitespace() private method

private EatWhitespace ( ) : void
return void
            private void EatWhitespace()
            {
                while (char.IsWhiteSpace(this.PeekChar))
                {
                    this.json.Read();
                    if (this.json.Peek() == -1)
                    {
                        break;
                    }
                }
            }