Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public static CodecReader wrap(CodecReader reader, Sort sort) throws IOException
* Expert: same as {@link #wrap(org.apache.lucene.index.CodecReader, Sort)} but operates directly
* on a {@link Sorter.DocMap}.
*/
static CodecReader wrap(CodecReader reader, Sorter.DocMap docMap, Sort sort) {
public static CodecReader wrap(CodecReader reader, Sorter.DocMap docMap, Sort sort) {
LeafMetaData metaData = reader.getMetaData();
LeafMetaData newMetaData =
new LeafMetaData(metaData.getCreatedVersionMajor(), metaData.getMinVersion(), sort);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public static class ByteSequencesReader implements BytesRefIterator, Closeable {
protected final String name;
protected final ChecksumIndexInput in;
protected final long end;
private final BytesRefBuilder ref = new BytesRefBuilder();
protected final BytesRefBuilder ref = new BytesRefBuilder();

/** Constructs a ByteSequencesReader from the provided IndexInput */
public ByteSequencesReader(ChecksumIndexInput in, String name) {
Expand Down
Loading