Removed unicode arrow

This commit is contained in:
David Perez 2015-03-25 13:14:48 +01:00
parent 79ef772219
commit 2c52efeca5
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ object BasicCommands {
def helpParser(s: State) =
{
val h = (Help.empty /: s.definedCommands) { (a, b)
val h = (Help.empty /: s.definedCommands) { (a, b) =>
a ++
(try b.help(s) catch { case ex: Throwable => Help.empty })
}
@ -41,7 +41,7 @@ object BasicCommands {
val message = try
Help.message(h, arg)
catch {
case ex: Throwable
case ex: Throwable =>
ex.toString
}
System.out.println(message)