davsclaus commented on code in PR #25528:
URL: https://github.com/apache/camel/pull/25528#discussion_r3842820895
##########
components/camel-clickup/src/test/java/org/apache/camel/component/clickup/ClickUpWebhookCallTest.java:
##########
@@ -28,45 +31,35 @@
import org.apache.camel.component.webhook.WebhookConfiguration;
import org.apache.camel.component.webhook.WebhookEndpoint;
import org.junit.jupiter.api.Test;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-public class ClickUpWebhookCallTest extends ClickUpTestSupport {
+import static java.util.List.of;
Review Comment:
Nit: this static import (and the bare `of(...)` call on line 39) doesn't
appear anywhere else in the codebase and is a bit ambiguous at the call site
(could be mistaken for `Set.of`, `Stream.of`, etc.). Consider using
`List.of(...)` explicitly instead, for consistency with the rest of the project.
--
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]