Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanos committed Oct 22, 2024
1 parent c0cfc6e commit 70542af
Showing 1 changed file with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

import io.temporal.common.Experimental;
import io.temporal.workflow.Functions;

import javax.annotation.Nullable;
import java.lang.reflect.Type;
import java.util.Arrays;
import java.util.concurrent.*;
Expand Down Expand Up @@ -321,9 +319,7 @@ WorkflowUpdateHandle<R> invoke(Functions.Proc workflow) {
}
}

/**
* Invoked by {@link WorkflowInvocationHandler.UpdateWithStartInvocationHandler}.
*/
/** Invoked by {@link WorkflowInvocationHandler.UpdateWithStartInvocationHandler}. */
void prepareUpdate(
WorkflowStub stub, String updateName, Class resultClass, Type resultType, Object[] args) {
setStub(stub);
Expand All @@ -336,9 +332,7 @@ void prepareUpdate(
.build();
}

/**
* Invoked by {@link WorkflowInvocationHandler.UpdateWithStartInvocationHandler}.
*/
/** Invoked by {@link WorkflowInvocationHandler.UpdateWithStartInvocationHandler}. */
void prepareStart(WorkflowStub stub, Object[] args) {
setStub(stub);
this.workflowArgs = args;
Expand Down

0 comments on commit 70542af

Please sign in to comment.