smiklosovic commented on code in PR #86: URL: https://github.com/apache/cassandra-sidecar/pull/86#discussion_r2209957617
########## server/src/main/java/org/apache/cassandra/sidecar/handlers/livemigration/LiveMigrationListInstanceFilesHandler.java: ########## @@ -20,11 +20,11 @@ import java.io.IOException; import java.util.Set; -import javax.inject.Inject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import com.google.inject.Inject; Review Comment: replaced everything by Inject and Singleton from Guice. Guice ones are more prevalent already. After bumping Guice to 7.0.0, javax versions of these annotations were not found anymore. -- 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]

