tkobayas commented on code in PR #5576: URL: https://github.com/apache/incubator-kie-drools/pull/5576#discussion_r1384337057
########## drools-core/src/main/java/org/drools/core/impl/ActivationsManagerImpl.java: ########## @@ -59,6 +52,13 @@ import org.kie.api.event.rule.MatchCancelledCause; import org.kie.api.runtime.rule.AgendaFilter; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + Review Comment: Hi @mariofusco , you may be already aware, the order of import is against checkstyle (= currently Paolo is working on). Don't you use https://github.com/kiegroup/droolsjbpm-build-bootstrap/blob/main/ide-configuration/intellij-configuration/code-style/intellij-code-style_droolsjbpm-java-conventions.xml ? -- 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]
