davsclaus commented on code in PR #11599:
URL: https://github.com/apache/camel/pull/11599#discussion_r1340123173


##########
core/camel-core/src/test/java/org/apache/camel/component/file/FileConsumerThreadsInProgressIssueTest.java:
##########
@@ -86,7 +86,7 @@ private void createManyFiles(int number) throws Exception {
         Path dir = testDirectory();
         for (int i = 0; i < number; i++) {
             String pad = String.format("%04d%n", i);

Review Comment:
   Its better to not generate file name using %n, so can you make a
   
       String name = String.format("%04d", i);



-- 
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]

Reply via email to