Copilot commented on code in PR #16934: URL: https://github.com/apache/pinot/pull/16934#discussion_r2393052129
########## pinot-core/src/main/java/org/apache/pinot/core/periodictask/PeriodicTaskScheduler.java: ########## @@ -18,12 +18,16 @@ */ package org.apache.pinot.core.periodictask; +import com.google.common.collect.Maps; import java.util.ArrayList; +import java.util.Collection; import java.util.List; +import java.util.Map; import java.util.Properties; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; +import org.apache.arrow.util.Preconditions; Review Comment: Use `com.google.common.base.Preconditions` instead of `org.apache.arrow.util.Preconditions` to maintain consistency with the existing Guava dependencies in the project (as evidenced by the `com.google.common.collect.Maps` import). ```suggestion import com.google.common.base.Preconditions; ``` -- 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]
