File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/uber/cadence Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ public static <T> T newExternalWorkflowStub(
167
167
new ExternalWorkflowInvocationHandler (execution , getWorkflowInterceptor ()));
168
168
}
169
169
170
- public static Promise <WorkflowExecution > getChildWorkflowExecution (Object workflowStub ) {
170
+ public static Promise <WorkflowExecution > getWorkflowExecution (Object workflowStub ) {
171
171
if (workflowStub instanceof WorkflowStub ) {
172
172
return ((WorkflowStub ) workflowStub ).__getWorkflowExecution ();
173
173
}
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ public static <R> R newExternalWorkflowStub(
443
443
* as child workflow start is asynchronous.
444
444
*/
445
445
public static Promise <WorkflowExecution > getWorkflowExecution (Object childWorkflowStub ) {
446
- return WorkflowInternal .getChildWorkflowExecution (childWorkflowStub );
446
+ return WorkflowInternal .getWorkflowExecution (childWorkflowStub );
447
447
}
448
448
449
449
/**
You can’t perform that action at this time.
0 commit comments