Copilot commented on code in PR #61662: URL: https://github.com/apache/doris/pull/61662#discussion_r2979429255
########## fe/fe-core/src/main/java/org/apache/doris/mysql/authenticate/ldap/LdapClient.java: ########## @@ -25,12 +25,13 @@ import org.apache.doris.common.util.SymmetricEncryption; import org.apache.doris.persist.LdapInfo; -import com.google.common.annotations.VisibleForTesting; + import com.google.common.collect.Lists; Review Comment: `@VisibleForTesting` is still used later in this class (on `getDn`), but the corresponding `com.google.common.annotations.VisibleForTesting` import was removed in this change. This will cause a compilation error; either re-add the import or remove/replace the annotation if it's no longer needed. ```suggestion import com.google.common.collect.Lists; import com.google.common.annotations.VisibleForTesting; ``` -- 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]
