Skip to content

Commit

Permalink
Fixed #191: Use the local variable which has been checked for null in…
Browse files Browse the repository at this point in the history
…stead of the parameter which might be null at that point
  • Loading branch information
hypfvieh committed Oct 25, 2022
1 parent 703eda0 commit 31ba60d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class ReceivingService {
executors.put(ExecutorNames.METHODCALL, Executors.newFixedThreadPool(rsCfg.getMethodCallThreadPoolSize(), new NameableThreadFactory("DBus-MethodCall-Receiver-", true)));
executors.put(ExecutorNames.METHODRETURN, Executors.newFixedThreadPool(rsCfg.getMethodReturnThreadPoolSize(), new NameableThreadFactory("DBus-MethodReturn-Receiver-", true)));

retryHandler = _rsCfg.getRetryHandler();
retryHandler = rsCfg.getRetryHandler();
}

/**
Expand Down

0 comments on commit 31ba60d

Please sign in to comment.