Skip to content

Commit

Permalink
removed unnecessary stacktrace prints
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Aug 4, 2024
1 parent 7355577 commit 82b8801
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,6 @@ public static boolean isInstanceOf(Object obj, String className) {
// Check if the object is an instance of the dynamically obtained class
return clazz.isInstance(obj);
} catch (ClassNotFoundException e) {
// Handle the exception, e.g., log the error
e.printStackTrace();
return false;
}
}
Expand Down

0 comments on commit 82b8801

Please sign in to comment.