Skip to content

Commit

Permalink
Fix comments causing errors with Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
Christoph Büscher committed Jul 19, 2018
1 parent 644a92f commit f232c36
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public class NestedAggregatorTests extends AggregatorTestCase {
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
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class ReverseNestedAggregatorTests extends AggregatorTestCase {
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
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void setUpTest() throws Exception {
}

/**
* 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
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
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
protected Map<String, MappedFieldType> getFieldAliases(MappedFieldType... fieldTypes) {
Expand Down

0 comments on commit f232c36

Please sign in to comment.