Skip to content

Commit 65487c6

Browse files
committed
formatting changes
1 parent 42a834b commit 65487c6

4 files changed

Lines changed: 0 additions & 5 deletions

File tree

core/src/main/java/io/grpc/internal/ServerTransport.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,4 @@ public interface ServerTransport extends InternalInstrumented<SocketStats> {
4444
* outstanding tasks are cancelled when the transport terminates.
4545
*/
4646
ScheduledExecutorService getScheduledExecutorService();
47-
4847
}

netty/src/main/java/io/grpc/netty/NettyServerHandler.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,6 @@ public void onStreamClosed(Http2Stream stream) {
370370
checkArgument(maxMessageSize >= 0, "maxMessageSize must be non-negative: %s", maxMessageSize);
371371
this.maxMessageSize = maxMessageSize;
372372
this.tcpMetrics = new TcpMetrics.Tracker(metricRecorder, "server");
373-
374373
this.keepAliveTimeInNanos = keepAliveTimeInNanos;
375374
this.keepAliveTimeoutInNanos = keepAliveTimeoutInNanos;
376375
this.maxConnectionIdleManager = maxConnectionIdleManager;
@@ -673,7 +672,6 @@ void setKeepAliveManagerForTest(KeepAliveManager keepAliveManager) {
673672
@Override
674673
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
675674
tcpMetrics.channelInactive(ctx.channel());
676-
677675
try {
678676
if (keepAliveManager != null) {
679677
keepAliveManager.onTransportTermination();

netty/src/main/java/io/grpc/netty/NettyServerTransport.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.util.logging.Level;
4747
import java.util.logging.Logger;
4848

49-
5049
/**
5150
* The Netty-based server transport.
5251
*/

okhttp/src/test/java/io/grpc/okhttp/OkHttpClientTransportTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@
146146
*/
147147
@RunWith(JUnit4.class)
148148
public class OkHttpClientTransportTest {
149-
150149
private static final int TIME_OUT_MS = 2000;
151150
private static final int INITIAL_WINDOW_SIZE = 65535;
152151
private static final String NETWORK_ISSUE_MESSAGE = "network issue";

0 commit comments

Comments
 (0)