Skip to content

Commit

Permalink
Restore Point before refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mackenzie-High committed Aug 12, 2018
1 parent efb8ce0 commit 05b0ace
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,15 @@ public void onPing (final Reactor reactor,

if (flag.compareAndSet(false, true))
{
// TODO: Catch excpetions???
service.submit(() -> run(reactor));
try
{
// TODO: Catch excpetions???
service.submit(() -> run(reactor));
}
finally
{
flag.set(false);
}
}
}

Expand Down

0 comments on commit 05b0ace

Please sign in to comment.