pjfanning commented on code in PR #2081: URL: https://github.com/apache/pekko/pull/2081#discussion_r2296608905
########## actor-testkit-typed/src/test/java/jdocs/org/apache/pekko/actor/testkit/typed/javadsl/SyncTestingExampleTest.java: ########## @@ -14,22 +14,23 @@ package jdocs.org.apache.pekko.actor.testkit.typed.javadsl; // #imports +import static org.junit.Assert.assertEquals; + +import com.typesafe.config.Config; +import java.util.HashMap; +import java.util.List; +import java.util.Optional; import org.apache.pekko.actor.testkit.typed.CapturedLogEvent; import org.apache.pekko.actor.testkit.typed.Effect; import org.apache.pekko.actor.testkit.typed.javadsl.BehaviorTestKit; import org.apache.pekko.actor.testkit.typed.javadsl.TestInbox; import org.apache.pekko.actor.typed.*; import org.apache.pekko.actor.typed.javadsl.*; -import java.util.HashMap; -import java.util.List; -import java.util.Optional; - -import com.typesafe.config.Config; -import org.slf4j.event.Level; -// #imports Review Comment: Is the code ordered the old way to highlight just the main imports? The Paradox plugin can be retrieve code based on comments in this format. -- 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]
