maedhroz commented on code in PR #2540: URL: https://github.com/apache/cassandra/pull/2540#discussion_r1289137965
########## src/java/org/apache/cassandra/index/sai/disk/v1/sortedterms/SortedTermsWriter.java: ########## @@ -18,28 +18,22 @@ package org.apache.cassandra.index.sai.disk.v1.sortedterms; -import java.io.Closeable; -import java.io.IOException; -import java.util.Arrays; -import javax.annotation.Nonnull; -import javax.annotation.concurrent.NotThreadSafe; - -import com.google.common.base.Preconditions; - -import org.apache.cassandra.index.sai.disk.io.IndexOutputWriter; import org.apache.cassandra.index.sai.disk.v1.MetadataWriter; -import org.apache.cassandra.index.sai.disk.v1.bitpack.NumericValuesWriter; import org.apache.cassandra.index.sai.disk.v1.SAICodecUtils; -import org.apache.cassandra.io.tries.IncrementalDeepTrieWriterPageAware; +import org.apache.cassandra.index.sai.disk.v1.bitpack.NumericValuesWriter; import org.apache.cassandra.io.util.FileUtils; +import org.apache.cassandra.utils.FastByteOperations; import org.apache.cassandra.utils.bytecomparable.ByteComparable; import org.apache.cassandra.utils.bytecomparable.ByteSource; import org.apache.lucene.store.IndexOutput; import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.BytesRefBuilder; import org.apache.lucene.util.StringHelper; -import static org.apache.cassandra.index.sai.disk.v1.trie.TrieTermsDictionaryReader.trieSerializer; +import javax.annotation.Nonnull; +import javax.annotation.concurrent.NotThreadSafe; +import java.io.Closeable; +import java.io.IOException; Review Comment: nit: Looks like `java` and `javax` imports got auto-formatted down here? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

