Fix checkstyles before merge

Resolves #3012
This commit is contained in:
Oleg Zhurakousky
2024-10-02 12:24:52 +02:00
parent 94142aa80f
commit 6f1b5a4d93

View File

@@ -192,7 +192,8 @@ public final class StreamBridge implements StreamOperations, SmartInitializingSi
lock.lock();
try {
functionToInvoke = this.getStreamBridgeFunction(outputContentType.toString(), producerProperties);
} finally {
}
finally {
lock.unlock();
}
@@ -211,8 +212,9 @@ public final class StreamBridge implements StreamOperations, SmartInitializingSi
Message<?> resultMessage;
lock.lock();
try {
resultMessage = (Message<byte[]>)functionToInvoke.apply(messageToSend);
} finally {
resultMessage = (Message<byte[]>) functionToInvoke.apply(messageToSend);
}
finally {
lock.unlock();
}