gortiz commented on code in PR #10184: URL: https://github.com/apache/pinot/pull/10184#discussion_r1149356183
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/creator/impl/fwd/AbstractForwardIndexCreator.java: ########## @@ -16,10 +16,16 @@ * specific language governing permissions and limitations * under the License. */ -package org.apache.pinot.segment.spi.index.reader.provider; -public interface IndexReaderProvider - extends BloomFilterReaderProvider, ForwardIndexReaderProvider, GeospatialIndexReaderProvider, - InvertedIndexReaderProvider, JsonIndexReaderProvider, RangeIndexReaderProvider, SortedIndexReaderProvider, - TextIndexReaderProvider { +package org.apache.pinot.segment.local.segment.creator.impl.fwd; + +import java.io.IOException; +import org.apache.pinot.segment.spi.index.creator.ForwardIndexCreator; + + +public abstract class AbstractForwardIndexCreator implements ForwardIndexCreator { + @Override + public void seal() Review Comment: I also removed `AbstractForwardIndexCreator` class, as it was not needed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org