aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorzpencer <spencerfang@google.com>2018-05-24 11:12:30 -0700
committerGitHub <noreply@github.com>2018-05-24 11:12:30 -0700
commitff9aa39bb63d0360853d49ed833ee44844ef0f90 (patch)
tree76f057381a380f9c2aa22a19647614d03ceeb90c /services
parent8e9d4cbe5cb455315e55846e91706cccecb4b577 (diff)
downloadgrpc-grpc-java-ff9aa39bb63d0360853d49ed833ee44844ef0f90.tar.gz
core,services: fix lints (#4504)
- Type parameters must be upper camel case - constant case field must be final
Diffstat (limited to 'services')
-rw-r--r--services/src/test/java/io/grpc/services/BinaryLogProviderTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/src/test/java/io/grpc/services/BinaryLogProviderTest.java b/services/src/test/java/io/grpc/services/BinaryLogProviderTest.java
index 30530f8b6..c34519da4 100644
--- a/services/src/test/java/io/grpc/services/BinaryLogProviderTest.java
+++ b/services/src/test/java/io/grpc/services/BinaryLogProviderTest.java
@@ -406,7 +406,7 @@ public class BinaryLogProviderTest {
private static class StringMarshaller implements MethodDescriptor.Marshaller<String> {
- public static StringMarshaller INSTANCE = new StringMarshaller();
+ public static final StringMarshaller INSTANCE = new StringMarshaller();
@Override
public InputStream stream(String value) {