This is an automated email from the ASF dual-hosted git repository.
lizhimins 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 ff8f6f74c5 [ISSUE #11011] Fix misplaced license header in
ConfigManagerTest (#11012)
ff8f6f74c5 is described below
commit ff8f6f74c560e391261ccd716707c6d20422e253
Author: lizhimins <[email protected]>
AuthorDate: Fri Sep 4 15:17:02 2026 +0800
[ISSUE #11011] Fix misplaced license header in ConfigManagerTest (#11012)
Move the ASF license comment to the top of the file, before the
package statement. It was squeezed onto the same line as the package
declaration (introduced by b6ff649291), which breaks the conventional
header placement used across the codebase.
---
common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java
b/common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java
index a61ec4c052..1fdb961a1c 100644
--- a/common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java
+++ b/common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java
@@ -1,4 +1,4 @@
-package org.apache.rocketmq.common;/*
+/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
@@ -14,6 +14,7 @@ package org.apache.rocketmq.common;/*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+package org.apache.rocketmq.common;
import java.io.File;
import java.io.PrintWriter;