File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl CoreEngine {
5252 // Initialize graph with backend-specific liveliness pattern and parser
5353 use ros_z:: backend:: { KeyExprBackend , RmwZenohBackend , Ros2DdsBackend } ;
5454
55- let ( liveliness_pattern , graph) = match backend {
55+ let ( _liveliness_pattern , graph) = match backend {
5656 Backend :: RmwZenoh => {
5757 // RmwZenoh format: @ros2_lv/{domain_id}/**
5858 let pattern = format ! ( "@ros2_lv/{domain_id}/**" ) ;
@@ -61,7 +61,7 @@ impl CoreEngine {
6161 & session,
6262 domain_id,
6363 pattern. clone ( ) ,
64- |ke| RmwZenohBackend :: parse_liveliness ( ke ) ,
64+ RmwZenohBackend :: parse_liveliness,
6565 ) ?;
6666 ( pattern, g)
6767 }
@@ -73,7 +73,7 @@ impl CoreEngine {
7373 & session,
7474 domain_id,
7575 pattern. clone ( ) ,
76- |ke| Ros2DdsBackend :: parse_liveliness ( ke ) ,
76+ Ros2DdsBackend :: parse_liveliness,
7777 ) ?;
7878 ( pattern, g)
7979 }
You can’t perform that action at this time.
0 commit comments