Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public final EngineConfig config() {
return engineConfig;
}

protected abstract SegmentInfos getLastCommittedSegmentInfos();
public abstract SegmentInfos getLastCommittedSegmentInfos();

public MergeStats getMergeStats() {
return new MergeStats();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2478,7 +2478,7 @@ protected boolean maybeFailEngine(String source, Exception e) {
}

@Override
protected SegmentInfos getLastCommittedSegmentInfos() {
public SegmentInfos getLastCommittedSegmentInfos() {
return lastCommittedSegmentInfos;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ protected ReferenceManager<ElasticsearchDirectoryReader> getReferenceManager(Sea
}

@Override
protected SegmentInfos getLastCommittedSegmentInfos() {
public SegmentInfos getLastCommittedSegmentInfos() {
return lastCommittedSegmentInfos;
}

Expand Down