renu555 41b79398a3 Always true condition.
for (int index = 0; index < size && !isMultiLine; ++index) 
In addition to dead code, in the above if condition checking to !isMultiLine is of no use as it will be always true and hence "for" depends only on condition [index < size.]
The mentioned test case works fine in this case also.
2014-07-05 19:05:41 -07:00
..
2014-04-19 21:41:03 +00:00
2014-04-19 21:41:03 +00:00
2014-07-05 17:36:20 -07:00
2014-04-19 21:41:03 +00:00
2014-07-05 19:05:41 -07:00