Skip to content

Commit 9d61e27

Browse files
authored
make linter happy
reorder `final static` -> `static final`
1 parent 559dd0f commit 9d61e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class NettyClientTransport implements ConnectionClientTransport {
7373
* Get the existing {@link ChannelLogger} key in case a separate, isolated class loader has
7474
* already created {@link LOGGER_KEY}.
7575
*/
76-
private final static AttributeKey<ChannelLogger> getOrCreateChannelLogger() {
76+
private static final AttributeKey<ChannelLogger> getOrCreateChannelLogger() {
7777
AttributeKey<ChannelLogger> key = AttributeKey.valueOf("channelLogger");
7878
if (key == null) {
7979
key = AttributeKey.newInstance("channelLogger");

0 commit comments

Comments
 (0)