This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0d9b328322ffaf3f052200846356a79028563388 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Jan 26 14:35:11 2026 +0000 (chores): ensure usage of platform-specific newline characters --- .../component/platform/http/main/MainHttpServerDevConsole.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/MainHttpServerDevConsole.java b/components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/MainHttpServerDevConsole.java index 8f02b14655a9..8541f03daaad 100644 --- a/components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/MainHttpServerDevConsole.java +++ b/components/camel-platform-http-main/src/main/java/org/apache/camel/component/platform/http/main/MainHttpServerDevConsole.java @@ -42,11 +42,11 @@ public class MainHttpServerDevConsole extends AbstractDevConsole { String url = String.format("%s:%s%s", server.getHost(), server.getPort(), p); sb.append(String.format(" Server: http://%s", url)); if (server.getMaxBodySize() != null) { - sb.append(String.format("\n Max Body Size: %s", server.getMaxBodySize())); + sb.append(String.format("%n Max Body Size: %s", server.getMaxBodySize())); } - sb.append(String.format("\n File Upload Enabled: %b", server.isFileUploadEnabled())); - sb.append(String.format("\n File Upload Dir: %s", server.getFileUploadDirectory())); - sb.append(String.format("\n Use Global SSL ContextParameters: %s", server.isUseGlobalSslContextParameters())); + sb.append(String.format("%n File Upload Enabled: %b", server.isFileUploadEnabled())); + sb.append(String.format("%n File Upload Dir: %s", server.getFileUploadDirectory())); + sb.append(String.format("%n Use Global SSL ContextParameters: %s", server.isUseGlobalSslContextParameters())); } return sb.toString();
