missed one character in my lucene escape util

This commit is contained in:
Jeremy Long
2015-10-17 07:40:38 -04:00
parent 04db8d3208
commit ad8c7b3cd2

View File

@@ -77,6 +77,7 @@ public final class LuceneUtils {
case '*':
case '?':
case ':':
case '/':
case '\\': //it is supposed to fall through here
buf.append('\\');
default: