Skip to content

Commit 33d0bde

Browse files
committed
Fix run() method visibility
1 parent 218ce90 commit 33d0bde

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

errorhandler/src/main/java/com/workable/errorhandler/ErrorHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ protected void handle(Throwable error, ThreadLocal<Context> context) {
269269
*
270270
* @param blockExecutor functional interface containing Exception prone code
271271
*/
272-
protected void run(BlockExecutor blockExecutor) {
272+
public void run(BlockExecutor blockExecutor) {
273273
try {
274274
blockExecutor.invoke();
275275
} catch (Exception exception) {

0 commit comments

Comments
 (0)