Re: Character Escape in QueryParsing.StrParser.getQuotedString()

2009-12-01 Thread Yonik Seeley
s 629         } else if (ch==delim) { > 630           pos++; > 631           return sb.toString(); > 632         } > -- > View this message in context: > http://old.nabble.com/Character-Escape-in-QueryParsing.StrParser.getQuotedString%28%29-tp26584376p26584376.html > Sent from the Solr - Dev mailing list archive at Nabble.com. > >

Character Escape in QueryParsing.StrParser.getQuotedString()

2009-11-30 Thread wojtekpia
I'm confused by the following code snippet in QueryParsing.StrParser.getQuotedString(). 626 char ch = val.charAt(pos); 627 if (ch=='\\') { 628 ch = poshttp://old.nabble.com/Character-Escape-in-QueryParsing.StrParser.getQuotedString%28%29-tp26584376p265