Skip to content

Commit

Permalink
pref: don't print meaningless ParseException
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj committed May 2, 2024
1 parent d344405 commit ce02564
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,7 @@ public void validateAndUpdate() {
try {
Object result = formatter.stringToValue((String)getText());
setValue((URI)result, false, false); // no callback, no validation
} catch (ParseException ignore) {
ignore.printStackTrace();
}
} catch (ParseException ignore) {}
}
}

Expand Down

0 comments on commit ce02564

Please sign in to comment.