Fix typo in comment in scheduler engine

This commit fixes a minor typo in a big block comment in
SchedulerEngine.java.
This commit is contained in:
Jason Tedor 2018-08-20 22:58:07 -04:00
parent ad0a965db9
commit 6d62d6755a
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public class SchedulerEngine {
/*
* Allowing the throwable to escape here will lead to be it being caught in FutureTask#run and set as the outcome of this
* task; however, we never inspect the the outcomes of these scheduled tasks and so allowing the throwable to escape
* unhandled here could lead to use losing fatal errors. Instead, we rely on ExceptionsHelper#dieOnError to appropriately
* unhandled here could lead to us losing fatal errors. Instead, we rely on ExceptionsHelper#dieOnError to appropriately
* dispatch any error to the uncaught exception handler. We should never see an exception here as these do not escape from
* SchedulerEngine#notifyListeners.
*/