Skip to content

Commit

Permalink
fix: remove unnecessary printStackTrace
Browse files Browse the repository at this point in the history
This was never meant to be there
  • Loading branch information
Misat11 committed Dec 3, 2024
1 parent 87592da commit 89cd6d7
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public Object invokeInstance(Object instance, Object...params) {
try {
return method.invoke(instance, params);
} catch (Throwable t) {
t.printStackTrace();
return null;
}
}
Expand Down

0 comments on commit 89cd6d7

Please sign in to comment.