Skip to content

Commit

Permalink
even -> event
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Jan 28, 2025
1 parent be282b1 commit 726db0d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public QueryResult handleDirectQueryWorkflowTask(
}

@Override
public void resetStartedEvenId(Long eventId) {
public void resetStartedEventId(Long eventId) {
workflowStateMachines.resetStartedEventId(eventId);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ private Result handleWorkflowTaskWithQuery(
workflowTask.getWorkflowType().getName(),
workflowTask,
wftResult,
workflowRunTaskHandler::resetStartedEvenId);
workflowRunTaskHandler::resetStartedEventId);
}

if (useCache) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ QueryResult handleDirectQueryWorkflowTask(
*
* @param eventId the event ID to reset the cached state to.
*/
void resetStartedEvenId(Long eventId);
void resetStartedEventId(Long eventId);

void close();
}
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ public QueryResult handleDirectQueryWorkflowTask(
}

@Override
public void resetStartedEvenId(Long event) {}
public void resetStartedEventId(Long event) {}

@Override
public void close() {
Expand Down

0 comments on commit 726db0d

Please sign in to comment.