Remove deprecated IdsQueryBuilder constructor (#25529)

The constructor using `types` has been deprecated for a while now (starting with
ES 5.1.). It can be removed in the next mayor version. Since types are optional
they should be added with the #types() setter.
This commit is contained in:
Christoph Büscher 2017-07-04 11:59:48 +02:00 committed by GitHub
parent 43efcffcc2
commit 5200665295
1 changed files with 0 additions and 9 deletions

View File

@ -65,15 +65,6 @@ public class IdsQueryBuilder extends AbstractQueryBuilder<IdsQueryBuilder> {
// nothing to do // nothing to do
} }
/**
* Creates a new IdsQueryBuilder by providing the types of the documents to look for
* @deprecated Replaced by {@link #types(String...)}
*/
@Deprecated
public IdsQueryBuilder(String... types) {
types(types);
}
/** /**
* Read from a stream. * Read from a stream.
*/ */