summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java')
-rw-r--r--core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java b/core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java
index 1889c6e759..4580de4cc4 100644
--- a/core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java
+++ b/core/src/main/java/org/apache/lucene/queries/ExtendedCommonTermsQuery.java
@@ -35,8 +35,8 @@ public class ExtendedCommonTermsQuery extends CommonTermsQuery {
private final MappedFieldType fieldType;
- public ExtendedCommonTermsQuery(Occur highFreqOccur, Occur lowFreqOccur, float maxTermFrequency, boolean disableCoord, MappedFieldType fieldType) {
- super(highFreqOccur, lowFreqOccur, maxTermFrequency, disableCoord);
+ public ExtendedCommonTermsQuery(Occur highFreqOccur, Occur lowFreqOccur, float maxTermFrequency, MappedFieldType fieldType) {
+ super(highFreqOccur, lowFreqOccur, maxTermFrequency);
this.fieldType = fieldType;
}