Skip to content

Commit 2fe46c9

Browse files
committed
cleanup
1 parent 8559a11 commit 2fe46c9

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/main/java/com/github/rosjava_actionlib/ActionServer.java

-16
Original file line numberDiff line numberDiff line change
@@ -274,22 +274,6 @@ public void sendStatusTick() {
274274
goalStatusList.add(goalStatus);
275275
}
276276

277-
/* Collection<ServerGoal> serverGoals = goalTracker.values();
278-
279-
for (Iterator<ServerGoal> it = serverGoals.iterator(); it.hasNext();) {
280-
ServerGoal sg = it.next();
281-
goalStatus = node.getTopicMessageFactory().newFromType(GoalStatus._TYPE);
282-
goalStatus.setGoalId(getGoalId(sg.goal));
283-
goalStatus.setStatus((byte) sg.state.getState());
284-
goalStatusList.add(goalStatus);
285-
} */
286-
287-
/* for (ServerGoal sg : goalTracker.values()) {
288-
goalStatus = node.getTopicMessageFactory().newFromType(GoalStatus._TYPE);
289-
goalStatus.setGoalId(getGoalId(sg.goal));
290-
goalStatus.setStatus((byte) sg.state.getState());
291-
goalStatusList.add(goalStatus);
292-
} */
293277
status.setStatusList(goalStatusList);
294278
sendStatus(status);
295279
}

0 commit comments

Comments
 (0)