This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch CAMEL-23514-ascii-diagram-metrics
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 7e07575c2665b3ee75cc9b7a95da5032f77d647d
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu May 14 09:56:56 2026 +0200

    CAMEL-23514: Remove redundant r=refresh key and hint
    
    The overview tab auto-refreshes every 100ms via tick, making the
    manual r=refresh key unnecessary.
    
    Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
    Signed-off-by: Claus Ibsen <[email protected]>
---
 .../org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java  | 6 ------
 1 file changed, 6 deletions(-)

diff --git 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java
 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java
index 2f0c35830df1..33bb7dd581ba 100644
--- 
a/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java
+++ 
b/dsl/camel-jbang/camel-jbang-plugin-tui/src/main/java/org/apache/camel/dsl/jbang/core/commands/tui/CamelMonitor.java
@@ -262,11 +262,6 @@ public class CamelMonitor extends CamelCommand {
                 runner.quit();
                 return true;
             }
-            if (ke.isChar('r')) {
-                refreshData();
-                return true;
-            }
-
             // Tab switching with number keys
             if (ke.isChar('1')) {
                 return handleTabKey(TAB_OVERVIEW);
@@ -2012,7 +2007,6 @@ public class CamelMonitor extends CamelCommand {
 
         if (tab == TAB_OVERVIEW) {
             hint(spans, "q", "quit");
-            hint(spans, "r", "refresh");
             hint(spans, "\u2191\u2193", "navigate");
             hint(spans, "Enter", "details");
             hint(spans, "1-6", "tabs");

Reply via email to