aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorKun Zhang <zhangkun83@users.noreply.github.com>2018-05-23 11:58:19 -0700
committerGitHub <noreply@github.com>2018-05-23 11:58:19 -0700
commit68a462e447c2952d54a6fc658866cca065f36ee1 (patch)
tree779fd9e4db1023d64f0fb69b3248f5a181162a70 /services
parent5c4f2c7c0f79bd2ce4e40178ad6827535ec2fefa (diff)
downloadgrpc-grpc-java-68a462e447c2952d54a6fc658866cca065f36ee1.tar.gz
noop: resolve lint warnings found at import. (#4496)
Diffstat (limited to 'services')
-rw-r--r--services/src/main/java/io/grpc/services/BinaryLogProviderImpl.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/services/src/main/java/io/grpc/services/BinaryLogProviderImpl.java b/services/src/main/java/io/grpc/services/BinaryLogProviderImpl.java
index 907295ea3..826e2af8d 100644
--- a/services/src/main/java/io/grpc/services/BinaryLogProviderImpl.java
+++ b/services/src/main/java/io/grpc/services/BinaryLogProviderImpl.java
@@ -23,14 +23,12 @@ import io.grpc.ClientInterceptor;
import io.grpc.ServerInterceptor;
import java.io.IOException;
import java.util.concurrent.atomic.AtomicLong;
-import java.util.logging.Logger;
import javax.annotation.Nullable;
/**
* The default implementation of a {@link BinaryLogProvider}.
*/
class BinaryLogProviderImpl extends BinaryLogProvider {
- private static final Logger logger = Logger.getLogger(BinaryLogProviderImpl.class.getName());
private final BinlogHelper.Factory factory;
private final BinaryLogSink sink;
private final AtomicLong counter = new AtomicLong();