Skip to content

Commit

Permalink
remove useless throws Throwable
Browse files Browse the repository at this point in the history
  • Loading branch information
forax committed Sep 23, 2023
1 parent 1eb8fd1 commit f0a3c83
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ private Utils() {
throw new AssertionError();
}

public static Object invokeMethod(Object object, Method method, Object... args) throws Throwable {
public static Object invokeMethod(Object object, Method method, Object... args) {
try {
return method.invoke(object, args);
} catch (IllegalArgumentException e) {
Expand Down

0 comments on commit f0a3c83

Please sign in to comment.