Copilot commented on code in PR #12129:
URL: https://github.com/apache/cloudstack/pull/12129#discussion_r2559976490


##########
utils/src/main/java/com/cloud/utils/cisco/n1kv/vsm/VsmCommand.java:
##########
@@ -26,6 +26,7 @@
 import javax.xml.parsers.ParserConfigurationException;
 
 import org.apache.logging.log4j.Logger;
+import org.apache.cloudstack.utils.security.ParserUtils;
 import org.apache.logging.log4j.LogManager;

Review Comment:
   The import for `ParserUtils` is placed between two 
`org.apache.logging.log4j` imports, breaking the proper import ordering. 
Imports should be grouped and sorted alphabetically within their groups. The 
`ParserUtils` import should be placed after `LogManager` import to maintain 
proper ordering of `org.apache.cloudstack` and `org.apache.logging` imports.
   ```suggestion
   import org.apache.logging.log4j.LogManager;
   import org.apache.cloudstack.utils.security.ParserUtils;
   ```



-- 
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]

Reply via email to