Skip to content

Commit

Permalink
Remove unnecessary spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mindula committed Jul 22, 2024
1 parent 1bd071a commit 13f84d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3087,7 +3087,6 @@ public void visit(BLangLambdaFunction bLangLambdaFunction, AnalyzerData data) {
bLangLambdaFunction.function);
}
}

// If this is a worker we are already in a worker action system,
// if not we need to initiate a worker action system
if (isWorker) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function testCheckedExprWithNoErrorType3() {
function testOnFailWithCheckInLambdaFunction() {
function _ = function() {
do {
function _ = function () {
function _ = function() {
string _ = check getVal("");
};
} on fail {
Expand All @@ -103,7 +103,7 @@ function getVal(string str) returns string|error {
function testOnFailWithCheckInWorkers() {
string[] s = [];
worker A {
s.forEach(function (string k) {
s.forEach(function(string k) {
string _ = check getVal2();
});
} on fail {
Expand Down

0 comments on commit 13f84d8

Please sign in to comment.