Remove duplicate line in SearchAfterBuilder (#45994)

This commit is contained in:
Anup 2019-09-03 04:59:21 +05:30 committed by Christoph Büscher
parent 2662c1b417
commit e01ec802e7
1 changed files with 0 additions and 1 deletions

View File

@ -91,7 +91,6 @@ public class SearchAfterBuilder implements ToXContentObject, Writeable {
if (values[i] instanceof Double) continue;
if (values[i] instanceof Float) continue;
if (values[i] instanceof Boolean) continue;
if (values[i] instanceof Boolean) continue;
throw new IllegalArgumentException("Can't handle " + SEARCH_AFTER + " field value of type [" + values[i].getClass() + "]");
}
sortValues = new Object[values.length];