Skip to content

Commit

Permalink
remove cllipy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tomiy-0x62 committed Feb 14, 2025
1 parent cb855ad commit b7b51f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dds/qos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl DataWriterQosPolicies {
);
}
if is_ok {
return Ok(());
Ok(())
} else {
msg += "```\n";
Err(msg)
Expand Down Expand Up @@ -305,7 +305,7 @@ impl DataReaderQosPolicies {
);
}
if is_ok {
return Ok(());
Ok(())
} else {
msg += "```\n";
Err(msg)
Expand Down

0 comments on commit b7b51f6

Please sign in to comment.