You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2022/05/04 01:57:53 UTC

[rocketmq] branch develop updated: [ISSUE #4237] REMOVE unnecessary final modifier

This is an automated email from the ASF dual-hosted git repository.

jinrongtong pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/rocketmq.git


The following commit(s) were added to refs/heads/develop by this push:
     new caadd816b [ISSUE #4237] REMOVE unnecessary final modifier
caadd816b is described below

commit caadd816b4b7c818ac4fa5ee34857259449543b6
Author: 渊澄 <yu...@163.com>
AuthorDate: Wed May 4 09:57:34 2022 +0800

    [ISSUE #4237] REMOVE unnecessary final modifier
---
 .../src/main/java/io/openmessaging/rocketmq/utils/BeanUtils.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmessaging/src/main/java/io/openmessaging/rocketmq/utils/BeanUtils.java b/openmessaging/src/main/java/io/openmessaging/rocketmq/utils/BeanUtils.java
index 9853da815..97d0f74bf 100644
--- a/openmessaging/src/main/java/io/openmessaging/rocketmq/utils/BeanUtils.java
+++ b/openmessaging/src/main/java/io/openmessaging/rocketmq/utils/BeanUtils.java
@@ -29,7 +29,7 @@ import org.apache.rocketmq.client.log.ClientLogger;
 import org.apache.rocketmq.logging.InternalLogger;
 
 public final class BeanUtils {
-    final static InternalLogger log = ClientLogger.getLog();
+    static InternalLogger log = ClientLogger.getLog();
 
     /**
      * Maps primitive {@code Class}es to their corresponding wrapper {@code Class}.