Skip to content

Commit

Permalink
Fix checkstyle error
Browse files Browse the repository at this point in the history
  • Loading branch information
HindujaB committed Nov 21, 2023
1 parent 5409e2e commit 78832f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@
import org.wso2.ballerinalang.compiler.tree.BLangClassDefinition;
import org.wso2.ballerinalang.compiler.tree.BLangExternalFunctionBody;
import org.wso2.ballerinalang.compiler.tree.BLangFunction;
import org.wso2.ballerinalang.compiler.tree.BLangIdentifier;
import org.wso2.ballerinalang.compiler.tree.BLangImportPackage;
import org.wso2.ballerinalang.compiler.tree.BLangNodeVisitor;
import org.wso2.ballerinalang.compiler.tree.BLangPackage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3665,7 +3665,8 @@ private void validateWorkerInteractions(WorkerActionSystem workerActionSystem, A
} else {
this.validateWorkerActionParameters((BLangWorkerAsyncSendExpr) currentAction, receive);
}
String channelName = generateChannelName(workerActionSystem, (WorkerSendExpressionNode) currentAction, receive);
String channelName = generateChannelName(workerActionSystem, (WorkerSendExpressionNode) currentAction,
receive);
receive.channel = channelName;
if (currentAction.getKind() == NodeKind.WORKER_SYNC_SEND) {
((BLangWorkerSyncSendExpr) currentAction).channel = channelName;
Expand Down

0 comments on commit 78832f8

Please sign in to comment.