We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d7f55 commit 7a6a47fCopy full SHA for 7a6a47f
rosidl_generator_java/resource/action.java.em
@@ -82,7 +82,8 @@ public class @(type_name) implements ActionDefinition {
82
83
public static class SendGoalRequest extends @(type_name)_SendGoal_Request implements GoalRequestDefinition<@(type_name)> {
84
public List<Byte> getGoalUuid() {
85
- return super.getGoalId().getUuid();
+ // Return List since it's hash is based on the values (not the object pointer)
86
+ return super.getGoalId().getUuidAsList();
87
}
88
89
0 commit comments