Minor cleanup (e.g., removed unused imports and unnecessary uses of 'throws' signatures)
This commit is contained in:
Родитель
9d82c72254
Коммит
cf9f85d521
|
@ -54,7 +54,6 @@ import java.util.concurrent.atomic.AtomicLong;
|
|||
import static com.google.common.base.Preconditions.checkArgument;
|
||||
import static com.google.common.base.Preconditions.checkNotNull;
|
||||
import static com.google.common.base.Preconditions.checkState;
|
||||
import static com.microsoft.azure.cosmosdb.internal.directconnectivity.rntbd.RntbdReporter.reportIssueUnless;
|
||||
|
||||
@JsonSerialize(using = RntbdTransportClient.JsonSerializer.class)
|
||||
public final class RntbdTransportClient extends TransportClient implements AutoCloseable {
|
||||
|
|
|
@ -60,7 +60,7 @@ public class RntbdClientChannelHandler extends ChannelInitializer<Channel> imple
|
|||
* @param channel a channel that was just acquired
|
||||
*/
|
||||
@Override
|
||||
public void channelAcquired(final Channel channel) throws Exception {
|
||||
public void channelAcquired(final Channel channel) {
|
||||
logger.trace("{} CHANNEL ACQUIRED", channel);
|
||||
}
|
||||
|
||||
|
@ -72,7 +72,7 @@ public class RntbdClientChannelHandler extends ChannelInitializer<Channel> imple
|
|||
* @param channel a channel that was just created
|
||||
*/
|
||||
@Override
|
||||
public void channelCreated(final Channel channel) throws Exception {
|
||||
public void channelCreated(final Channel channel) {
|
||||
logger.trace("{} CHANNEL CREATED", channel);
|
||||
this.initChannel(channel);
|
||||
}
|
||||
|
@ -85,7 +85,7 @@ public class RntbdClientChannelHandler extends ChannelInitializer<Channel> imple
|
|||
* @param channel a channel that was just released
|
||||
*/
|
||||
@Override
|
||||
public void channelReleased(final Channel channel) throws Exception {
|
||||
public void channelReleased(final Channel channel) {
|
||||
logger.trace("{} CHANNEL RELEASED", channel);
|
||||
}
|
||||
|
||||
|
@ -112,10 +112,6 @@ public class RntbdClientChannelHandler extends ChannelInitializer<Channel> imple
|
|||
|
||||
checkNotNull(channel);
|
||||
|
||||
assert channel.isRegistered();
|
||||
assert channel.isOpen();
|
||||
assert !channel.isActive();
|
||||
|
||||
final RntbdRequestManager requestManager = new RntbdRequestManager();
|
||||
final long readerIdleTime = this.config.getReceiveHangDetectionTime();
|
||||
final long writerIdleTime = this.config.getSendHangDetectionTime();
|
||||
|
|
|
@ -73,7 +73,6 @@ import java.util.Optional;
|
|||
import java.util.UUID;
|
||||
import java.util.concurrent.CancellationException;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
import java.util.concurrent.CompletionException;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
@ -83,7 +82,6 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
|||
import static com.google.common.base.Preconditions.checkState;
|
||||
import static com.microsoft.azure.cosmosdb.internal.HttpConstants.StatusCodes;
|
||||
import static com.microsoft.azure.cosmosdb.internal.HttpConstants.SubStatusCodes;
|
||||
import static com.microsoft.azure.cosmosdb.internal.directconnectivity.rntbd.RntbdReporter.reportIssue;
|
||||
import static com.microsoft.azure.cosmosdb.internal.directconnectivity.rntbd.RntbdReporter.reportIssueUnless;
|
||||
|
||||
public final class RntbdRequestManager implements ChannelHandler, ChannelInboundHandler, ChannelOutboundHandler {
|
||||
|
|
Загрузка…
Ссылка в новой задаче