Skip to content

Commit

Permalink
fix visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
esteve committed Aug 10, 2023
1 parent b57faf8 commit c56212f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rclrs/src/action.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,17 @@ impl<T> ServerGoalHandle<T>
where
T: rosidl_runtime_rs::Action,
{
pub(crate) fn new(rcl_handle: Arc<rcl_action_goal_handle_t>) {}
pub fn new(rcl_handle: Arc<rcl_action_goal_handle_t>) {}

pub(crate) fn is_canceling(&self) -> bool {
pub fn is_canceling(&self) -> bool {
false
}

pub(crate) fn is_active(&self) -> bool {
pub fn is_active(&self) -> bool {
false
}

pub(crate) fn is_executing(&self) -> bool {
pub fn is_executing(&self) -> bool {
false
}
}

0 comments on commit c56212f

Please sign in to comment.