Lucene.Net.QueryParsers.Flexible.Core.Nodes.QueryNodeImpl.Allocate C# (CSharp) Method

Allocate() protected method

protected Allocate ( ) : void
return void
        protected virtual void Allocate()
        {
            if (this.clauses == null)
            {
                this.clauses = new List<IQueryNode>();
            }
            else
            {
                this.clauses.Clear();
            }
        }