Do not print the error again, as it’s now printed by the pipe to its error stream

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1735998 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/gogo/jline/src/main/java/org/apache/felix/gogo/jline/Shell.java b/gogo/jline/src/main/java/org/apache/felix/gogo/jline/Shell.java
index 367e6af..77febe8 100644
--- a/gogo/jline/src/main/java/org/apache/felix/gogo/jline/Shell.java
+++ b/gogo/jline/src/main/java/org/apache/felix/gogo/jline/Shell.java
@@ -301,13 +301,6 @@
                             }
                         } catch (Exception e) {
                             session.put(Shell.VAR_EXCEPTION, e);
-                            Object loc = session.get(Shell.VAR_LOCATION);
-
-                            if (null == loc || !loc.toString().contains(":")) {
-                                loc = "gogo";
-                            }
-                            System.out.println(loc + ": " + e.getClass().getSimpleName() + ": "
-                                    + e.getMessage());
                         }
 
                     } catch (UserInterruptException e) {