Skip to content

Commit

Permalink
Do not print text parsing exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
shurik204 committed May 13, 2024
1 parent 10c563c commit 1b1a075
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static CompletionsContainer<TextCompletion> getCompletions(String json, S
// client.player.sendMessage(Text.of("Parsed successfully!"), false);
} catch (IOException e) {
// client.inGameHud.getChatHud().addMessage(Text.of("IOException: " + e.getClass().getName() + " | " + e.getMessage()));
e.printStackTrace();
// e.printStackTrace();
} catch (StopParsingException e) {
// client.inGameHud.getChatHud().addMessage(Text.of("Suggestions: " + e.getSuggestions()));
// client.inGameHud.getChatHud().addMessage(Text.of("Reason: " + e.getReason()));
Expand Down

0 comments on commit 1b1a075

Please sign in to comment.