Skip to content

Commit 1895933

Browse files
committed
changed constructor to public
1 parent 2a9ef92 commit 1895933

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rosjava_actionlib/rosjava_actionlib/src/main/java/com/github/ekumen/rosjava_actionlib/ActionClient.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class ActionClient<T_ACTION_GOAL extends Message,
7878
* @param actionResultType A string with the type information for the result
7979
* message.
8080
*/
81-
ActionClient (ConnectedNode node, String actionName, String actionGoalType,
81+
public ActionClient (ConnectedNode node, String actionName, String actionGoalType,
8282
String actionFeedbackType, String actionResultType) {
8383
this.node = node;
8484
this.actionName = actionName;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private class ServerGoal {
7878
* @param actionResultType String holding the type for the action result
7979
* message.
8080
*/
81-
ActionServer (ConnectedNode node, String actionName, String actionGoalType,
81+
public ActionServer (ConnectedNode node, String actionName, String actionGoalType,
8282
String actionFeedbackType, String actionResultType) {
8383
this.node = node;
8484
this.actionName = actionName;

0 commit comments

Comments
 (0)