Fix comments causing errors with Java 11
This commit is contained in:
parent
644a92f158
commit
f232c36c19
|
@ -91,7 +91,7 @@ public class NestedAggregatorTests extends AggregatorTestCase {
|
||||||
private final SeqNoFieldMapper.SequenceIDFields sequenceIDFields = SeqNoFieldMapper.SequenceIDFields.emptySeqID();
|
private final SeqNoFieldMapper.SequenceIDFields sequenceIDFields = SeqNoFieldMapper.SequenceIDFields.emptySeqID();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For each provided field type, we also register an alias with name <field>-alias.
|
* For each provided field type, we also register an alias with name {@code <field>-alias}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class ReverseNestedAggregatorTests extends AggregatorTestCase {
|
||||||
private static final String MAX_AGG_NAME = "maxAgg";
|
private static final String MAX_AGG_NAME = "maxAgg";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For each provided field type, we also register an alias with name <field>-alias.
|
* For each provided field type, we also register an alias with name {@code <field>-alias}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
||||||
|
|
|
@ -77,7 +77,7 @@ public class SignificantTermsAggregatorTests extends AggregatorTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For each provided field type, we also register an alias with name <field>-alias.
|
* For each provided field type, we also register an alias with name {@code <field>-alias}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
||||||
|
|
|
@ -53,7 +53,7 @@ import static org.elasticsearch.search.aggregations.AggregationBuilders.signific
|
||||||
public class SignificantTextAggregatorTests extends AggregatorTestCase {
|
public class SignificantTextAggregatorTests extends AggregatorTestCase {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For each provided field type, we also register an alias with name <field>-alias.
|
* For each provided field type, we also register an alias with name {@code <field>-alias}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
|
||||||
|
|
Loading…
Reference in New Issue