Skip to content

Commit

Permalink
Remove unnecessary call to ex.printStackTrace
Browse files Browse the repository at this point in the history
Closes gh-42681
  • Loading branch information
snicoll committed Oct 15, 2024
1 parent 0a3418c commit 55ef77b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -199,7 +199,6 @@ private boolean driverClassIsLoadable() {
throw ex;
}
catch (Throwable ex) {
ex.printStackTrace();
return false;
}
}
Expand Down

0 comments on commit 55ef77b

Please sign in to comment.