AlexStocks commented on code in PR #107: URL: https://github.com/apache/dubbo-hessian-lite/pull/107#discussion_r3478686249
########## java-17-test/src/test/java/org/apache/dubbo/hessian/java17/RecordTest.java: ########## @@ -29,6 +29,7 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.List; +import java.util.Objects; Review Comment: [P1] Java import 顺序不符合规范。当前文件把 `org.*` 第三方/项目导入放在 `java.*` 之前,本次新增的 `java.util.Objects` 继续落在错误分组里。按约定应调整为 `java.*` 在前,空行后再放 `org.*` / 项目内导入,避免继续扩大既有 import 乱序。 -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
