Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
guoci authored and greenrobot-team committed Jan 25, 2022
1 parent a74cdf0 commit 842a4a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EventBus/src/org/greenrobot/eventbus/BackgroundPoster.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void run() {
eventBus.invokeSubscriber(pendingPost);
}
} catch (InterruptedException e) {
eventBus.getLogger().log(Level.WARNING, Thread.currentThread().getName() + " was interruppted", e);
eventBus.getLogger().log(Level.WARNING, Thread.currentThread().getName() + " was interrupted", e);
}
} finally {
executorRunning = false;
Expand Down

0 comments on commit 842a4a3

Please sign in to comment.