ClientUtils also needs to escape the slop: ~

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@575064 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2007-09-12 20:19:13 +00:00
parent 39328264aa
commit 1bccc85177
1 changed files with 1 additions and 0 deletions

View File

@ -185,6 +185,7 @@ public class ClientUtils
case '"':
case '*':
case ':':
case '~':
case '\\':
str.append( '\\' );
}