Skip to content

Commit 6a1511c

Browse files
committed
Fix Checkstyle violations
1 parent 2c7f796 commit 6a1511c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-integration-core/src/main/java/org/springframework/integration/handler/advice/LockRequestHandlerAdvice.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* based on the {@code lockKey} from message.
4141
* <p>
4242
* If {@code lockKey} for the message is {@code null}, the no locking around the call.
43-
* However, if {@link }
43+
* However, if {@link #setDiscardChannel(MessageChannel)} is provided, such a message will be sent there instead.
4444
*
4545
* @author Artem Bilan
4646
*
@@ -157,10 +157,10 @@ protected Object doInvoke(ExecutionCallback callback, Object target, Message<?>
157157
Duration waitLockDuration = getWaitLockDuration(message);
158158
try {
159159
if (waitLockDuration == null) {
160-
return lockRegistry.executeLocked(lockKey, callback::execute);
160+
return this.lockRegistry.executeLocked(lockKey, callback::execute);
161161
}
162162
else {
163-
return lockRegistry.executeLocked(lockKey, waitLockDuration, callback::execute);
163+
return this.lockRegistry.executeLocked(lockKey, waitLockDuration, callback::execute);
164164
}
165165
}
166166
catch (InterruptedException ex) {

0 commit comments

Comments
 (0)