Closed
Description
The option setter for allowNoIndices
in org.springframework.data.elasticsearch.core.query.BaseQueryBuilder
is currently as follows:
public SELF witAllowNoIndices(@Nullable Boolean allowNoIndices) {
this.allowNoIndices = allowNoIndices;
return self();
}
should be perhaps withAllowNoIndices ?