Skip to content

Commit

Permalink
util: remove Console.java debug trace
Browse files Browse the repository at this point in the history
  • Loading branch information
briansfrank committed Jun 18, 2024
1 parent dfa1662 commit c0c63da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/java/Console.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static Console cur()
private static Console create()
{
try { return new Jline3Console(); } catch (Exception e) {}
try { return new Jline2Console(); } catch (Exception e) { e.printStackTrace(); }
try { return new Jline2Console(); } catch (Exception e) {}
if (System.console() != null) return new JavaConsole(System.console());
return new StdinConsole();
}
Expand Down

0 comments on commit c0c63da

Please sign in to comment.