RockteMQ-AI commented on issue #11011:
URL: https://github.com/apache/rocketmq/issues/11011#issuecomment-5537020206
**Issue Evaluation**
Category: `bug` | Status: **Confirmed**
The reported issue has been verified against the current codebase (`develop`
branch).
**Root Cause:** In
`common/src/test/java/org/apache/rocketmq/common/ConfigManagerTest.java`, the
ASF license header comment block is placed on the same line as the `package`
statement instead of at the very top of the file. This was introduced by commit
`b6ff649291` ("feat(all): new feature for static topic").
**Verification:**
```java
// Current (incorrect):
package org.apache.rocketmq.common;/*
* Licensed to the Apache Software Foundation (ASF) ...
```
**Impact:** Formatting-only; does not affect runtime behavior, but violates
ASF header conventions used across the codebase.
**Severity:** Low
**Suggested Fix:** Move the license header block above the `package`
statement so it is the first content in the file.
An automated fix proposal can be generated. Reply `/approve` to proceed with
PR generation.
---
*Automated evaluation by github-manager*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]