Skip to content

Commit

Permalink
Fix a sonar lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thamindumk committed Jan 12, 2025
1 parent cb6c163 commit 92b12f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/JasmineGraphFrontEnd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ static void add_stream_kafka_command(int connFd, std::string &kafka_server_IP, c
c = tolower(c);

Check warning on line 1302 in src/frontend/JasmineGraphFrontEnd.cpp

View check run for this annotation

Codecov / codecov/patch

src/frontend/JasmineGraphFrontEnd.cpp#L1302

Added line #L1302 was not covered by tests
}
string direction;

Check warning on line 1304 in src/frontend/JasmineGraphFrontEnd.cpp

View check run for this annotation

Codecov / codecov/patch

src/frontend/JasmineGraphFrontEnd.cpp#L1304

Added line #L1304 was not covered by tests
if(is_directed == "y") {
if (is_directed == "y") {
direction = "1";
} else {
direction = "0";
Expand Down

0 comments on commit 92b12f1

Please sign in to comment.