File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/org/elasticsearch/index/fielddata/plain Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3434 * A general {@link org.apache.lucene.index.TermsEnum} to iterate over terms from a {@link AtomicFieldData.WithOrdinals}
3535 * instance.
3636 */
37- public class AtomicFieldDataWithOrdinalsTermsEnum extends TermsEnum {
37+ public class BytesValuesWithOrdinalsTermsEnum extends TermsEnum {
3838
3939 private final BytesValues .WithOrdinals bytesValues ;
4040 private final long maxOrd ;
4141
4242 private long currentOrd = BytesValues .WithOrdinals .MISSING_ORDINAL ;
4343 private BytesRef currentTerm ;
4444
45- public AtomicFieldDataWithOrdinalsTermsEnum ( AtomicFieldData .WithOrdinals afd ) {
46- this .bytesValues = afd . getBytesValues () ;
45+ public BytesValuesWithOrdinalsTermsEnum ( BytesValues .WithOrdinals bytesValues ) {
46+ this .bytesValues = bytesValues ;
4747 this .maxOrd = bytesValues .getMaxOrd ();
4848 }
4949
You can’t perform that action at this time.
0 commit comments