Skip to content

Commit

Permalink
Remove unnecessary t.getCause() call
Browse files Browse the repository at this point in the history
Discovered thanks to google/error-prone@691836e
  • Loading branch information
kluever authored and mattirn committed Sep 27, 2021
1 parent ba06531 commit f3c967f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion builtins/src/main/java/org/jline/builtins/Completers.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ protected void completeCommandArguments(LineReader reader, ParsedLine line, List
try {
res = environment.evaluate(reader, line, completion.condition);
} catch (Throwable t) {
t.getCause();
// Ignore
}
conditionValue = isTrue(res);
Expand Down

0 comments on commit f3c967f

Please sign in to comment.