Skip to content

Commit 675dddf

Browse files
committed
Checkstyle again again
1 parent e96e26c commit 675dddf

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,8 @@ public NonBlockingStatsDClient(final NonBlockingStatsDClientBuilder builder)
287287
telemetryClientChannel = clientChannel;
288288
telemetryStatsDProcessor = statsDProcessor;
289289
} else {
290-
telemetryClientChannel = createByteChannel(telemetryAddressLookup, timeout, connectionTimeout, bufferSize, enableJdkSocket);
290+
telemetryClientChannel = createByteChannel(telemetryAddressLookup, timeout, connectionTimeout,
291+
bufferSize, enableJdkSocket);
291292

292293
// similar settings, but a single worker and non-blocking.
293294
telemetryStatsDProcessor =
@@ -484,7 +485,8 @@ ClientChannel createByteChannel(
484485
// Allow us to support `unix://` for both kind of sockets like in go.
485486
switch (unixAddr.getTransportType()) {
486487
case UDS_STREAM:
487-
return new UnixStreamClientChannel(unixAddr.getAddress(), timeout, connectionTimeout, bufferSize, enableJdkSocket);
488+
return new UnixStreamClientChannel(unixAddr.getAddress(), timeout, connectionTimeout,
489+
bufferSize, enableJdkSocket);
488490
case UDS_DATAGRAM:
489491
case UDS:
490492
return new UnixDatagramClientChannel(

src/main/java/com/timgroup/statsd/UnixStreamClientChannel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ public class UnixStreamClientChannel implements ClientChannel {
2828
*
2929
* @param address Location of named pipe
3030
*/
31-
UnixStreamClientChannel(SocketAddress address, int timeout, int connectionTimeout, int bufferSize, boolean enableJdkSocket) throws IOException {
31+
UnixStreamClientChannel(SocketAddress address, int timeout, int connectionTimeout, int bufferSize,
32+
boolean enableJdkSocket) throws IOException {
3233
this.delegate = null;
3334
this.address = address;
3435
System.out.println("========== Constructor address: " + address);

0 commit comments

Comments
 (0)