orpiske commented on code in PR #11837: URL: https://github.com/apache/camel/pull/11837#discussion_r1373018924
########## components/camel-test/camel-test-junit5/src/main/java/org/apache/camel/test/junit5/TestSupport.java: ########## @@ -581,4 +582,16 @@ public static String fileUri(Path testDirectory) { public static String fileUri(Path testDirectory, String query) { return "file:" + testDirectory + (query.startsWith("?") ? "" : "/") + query; } + + @FunctionalInterface + public interface IntConsumer { + void execute(int i); + } Review Comment: This can be removed. -- 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: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org