Copilot commented on code in PR #13242: URL: https://github.com/apache/ignite/pull/13242#discussion_r3414669621
########## modules/core/src/main/java/org/apache/ignite/internal/processors/cache/IgniteInternalCache.java: ########## @@ -33,6 +33,7 @@ import org.apache.ignite.IgniteDataStreamer; import org.apache.ignite.cache.CacheAtomicityMode; import org.apache.ignite.cache.CacheEntry; +import org.apache.ignite.cache.CacheInterceptor; import org.apache.ignite.cache.CacheMetrics; Review Comment: `CacheInterceptor` is only referenced from Javadoc, so this import is considered unused by Checkstyle (`UnusedImports`) and will fail the build. Either remove the import (and use a fully-qualified name in the Javadoc), or reference the type from code. -- 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]
