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

EatWhitespace() private method

private EatWhitespace ( ) : void
return void
            void EatWhitespace()
            {
                while (Char.IsWhiteSpace(PeekChar)) {
                    json.Read();

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