Aggregations: Removed unused factor parameter in DateHistogramBuilder

DateHistogramParser does not recognise this parameter and therefore setting it would throw an exception as noted in https://github.com/elastic/elasticsearch/issues/6490. It is also not documented.
This commit is contained in:
Colin Goodheart-Smithe 2015-08-13 09:47:05 +01:00
parent ae7a73dc1c
commit a9a4903a0a
1 changed files with 0 additions and 14 deletions

View File

@ -40,7 +40,6 @@ public class DateHistogramBuilder extends ValuesSourceAggregationBuilder<DateHis
private String timeZone;
private String format;
private String offset;
private float factor = 1.0f;
/**
* Sole constructor.
@ -99,15 +98,6 @@ public class DateHistogramBuilder extends ValuesSourceAggregationBuilder<DateHis
return this;
}
/**
* Set a factor to apply to values of the field, typically used if times
* are stored in seconds instead of milliseconds.
*/
public DateHistogramBuilder factor(float factor) {
this.factor = factor;
return this;
}
/**
* Set the format to use for dates.
*/
@ -176,10 +166,6 @@ public class DateHistogramBuilder extends ValuesSourceAggregationBuilder<DateHis
builder.field("offset", offset);
}
if (factor != 1.0f) {
builder.field("factor", factor);
}
if (format != null) {
builder.field("format", format);
}