mirror of https://github.com/apache/cassandra
Fix generating javadoc with Java11; cleanup unused imports
Patch by Tommy Stendahl; reviewed by Dinesh Joshi for CASSANDRA-14988
This commit is contained in:
parent
e871903d41
commit
4aa022e215
|
|
@ -1,4 +1,5 @@
|
|||
4.0
|
||||
* Fix generating javadoc with Java11 (CASSANDRA-14988)
|
||||
* Only cancel conflicting compactions when starting anticompactions and sub range compactions (CASSANDRA-14935)
|
||||
* Use a stub IndexRegistry for non-daemon use cases (CASSANDRA-14938)
|
||||
* Don't enable client transports when bootstrap is pending (CASSANDRA-14525)
|
||||
|
|
|
|||
|
|
@ -18,14 +18,12 @@
|
|||
package org.apache.cassandra.hints;
|
||||
|
||||
import java.io.Closeable;
|
||||
import java.io.IOException;
|
||||
import java.util.UUID;
|
||||
import java.util.concurrent.BlockingQueue;
|
||||
import java.util.concurrent.LinkedBlockingQueue;
|
||||
|
||||
import org.apache.cassandra.config.Config;
|
||||
import org.apache.cassandra.net.MessagingService;
|
||||
import sun.nio.ch.DirectBuffer;
|
||||
|
||||
/**
|
||||
* A primitive pool of {@link HintsBuffer} buffers. Under normal conditions should only hold two buffers - the currently
|
||||
|
|
|
|||
Loading…
Reference in New Issue