Fix formatting of two values

This commit is contained in:
drdev
2015-09-06 00:18:16 +00:00
parent 91e4f5d2d6
commit d05eb93ec2

View File

@@ -543,7 +543,7 @@ public class AdvancedSearch {
case 1:
return formatValue(values.get(0));
case 2:
return formatValue(values.get(0)) + finalDelim + " " + formatValue(values.get(1));
return formatValue(values.get(0)) + finalDelim + formatValue(values.get(1));
default:
int lastValueIdx = valueCount - 1;
String result = formatValue(values.get(0));