This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch jline in repository https://gitbox.apache.org/repos/asf/camel.git
commit e42e060f3cffb66a1d9a4036f1e8ac4890103c84 Author: Claus Ibsen <[email protected]> AuthorDate: Thu Dec 11 09:45:22 2025 +0100 camel-jbang - camel get history use jline to make it mode better --- .../camel/dsl/jbang/core/commands/action/CamelHistoryAction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelHistoryAction.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelHistoryAction.java index 4562764c8feb..869624d05e45 100644 --- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelHistoryAction.java +++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/action/CamelHistoryAction.java @@ -278,7 +278,8 @@ public class CamelHistoryAction extends ActionWatchCommand { return 0; } - private List<AttributedString> interactiveContent(List<Row> rows, AtomicInteger rowIndex, AtomicInteger pageIndex, Size size) { + private List<AttributedString> interactiveContent( + List<Row> rows, AtomicInteger rowIndex, AtomicInteger pageIndex, Size size) { List<AttributedString> answer = new ArrayList<>(); // top message
