Skip to content

Commit

Permalink
Use my locals more consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaudy committed Nov 28, 2023
1 parent 1c0cb1f commit 6772f23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ private void refreshTablesAndFlushNotifications() {

final long localWatchdogMillis = watchDogMillis;
final LongConsumer localWatchdogTimeoutProcedure = watchDogTimeoutProcedure;
if ((watchDogMillis > 0) && (watchDogTimeoutProcedure != null)) {
if ((localWatchdogMillis > 0) && (localWatchdogTimeoutProcedure != null)) {
watchdogFuture = watchdogScheduler.schedule(
() -> localWatchdogTimeoutProcedure.accept(localWatchdogMillis),
localWatchdogMillis, MILLISECONDS);
Expand Down

0 comments on commit 6772f23

Please sign in to comment.