: Log: : javadoc from Karl Wettin There is one line of code change here ... is it functionally equivilent? (i can't tell from the amount of context in the patch) ...
: // NOTE: in certain cases, queue may be empty (for instance, if catenate : - // and generate are both set to false). In this case, we should proceed : - // to next token rather than throwing ArrayOutOfBounds : - if (queue.size() > 0) break; else continue; : + // and generate are both set to false). Only exit the loop if the queue : + // is not empty. : + if (queue.size() > 0) break; : } -Hoss
