We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 559dd0f commit 9d61e27Copy full SHA for 9d61e27
netty/src/main/java/io/grpc/netty/NettyClientTransport.java
@@ -73,7 +73,7 @@ class NettyClientTransport implements ConnectionClientTransport {
73
* Get the existing {@link ChannelLogger} key in case a separate, isolated class loader has
74
* already created {@link LOGGER_KEY}.
75
*/
76
- private final static AttributeKey<ChannelLogger> getOrCreateChannelLogger() {
+ private static final AttributeKey<ChannelLogger> getOrCreateChannelLogger() {
77
AttributeKey<ChannelLogger> key = AttributeKey.valueOf("channelLogger");
78
if (key == null) {
79
key = AttributeKey.newInstance("channelLogger");
0 commit comments