You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jg...@apache.org on 2014/07/26 03:52:05 UTC

[23/50] git commit: [KARAF-3117] The console welcome message is garbled when the console is restarted

[KARAF-3117] The console welcome message is garbled when the console is restarted


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/b8e7cf2e
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/b8e7cf2e
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/b8e7cf2e

Branch: refs/remotes/karaf-2.3.x
Commit: b8e7cf2e4e3023ba95867e04d6b384049e6c9f66
Parents: 9961511
Author: Guillaume Nodet <gn...@gmail.com>
Authored: Tue Jul 15 10:01:07 2014 +0200
Committer: Guillaume Nodet <gn...@gmail.com>
Committed: Tue Jul 15 10:23:09 2014 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/karaf/shell/console/jline/Console.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/b8e7cf2e/shell/console/src/main/java/org/apache/karaf/shell/console/jline/Console.java
----------------------------------------------------------------------
diff --git a/shell/console/src/main/java/org/apache/karaf/shell/console/jline/Console.java b/shell/console/src/main/java/org/apache/karaf/shell/console/jline/Console.java
index 527060e..5c179b0 100644
--- a/shell/console/src/main/java/org/apache/karaf/shell/console/jline/Console.java
+++ b/shell/console/src/main/java/org/apache/karaf/shell/console/jline/Console.java
@@ -148,6 +148,7 @@ public class Console implements Runnable
         if (!running) {
             return;
         }
+        out.println();
         if (reader.getHistory() instanceof PersistentHistory) {
             try {
                 ((PersistentHistory) reader.getHistory()).flush();