Skip to content

Commit

Permalink
Closes #2648: Bump com.puppycrawl.tools:checkstyle from 10.14.0 to 10…
Browse files Browse the repository at this point in the history
….17.0
  • Loading branch information
dependabot[bot] authored and gitgoodjhe committed Aug 7, 2024
1 parent 9280ff6 commit 808f1e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ private Task claim(String taskId, boolean forceClaim)
taskanaEngine.openConnection();
task = (TaskImpl) getTask(taskId);

TaskImpl oldTask = duplicateTaskExactly(task);
final TaskImpl oldTask = duplicateTaskExactly(task);
Instant now = Instant.now();

checkPreconditionsForClaimTask(task, forceClaim);
Expand Down Expand Up @@ -1395,7 +1395,7 @@ private Task requestReview(String taskId, boolean force)
task = (TaskImpl) getTask(taskId);
task = (TaskImpl) beforeRequestReviewManager.beforeRequestReview(task);

TaskImpl oldTask = duplicateTaskExactly(task);
final TaskImpl oldTask = duplicateTaskExactly(task);

if (force && task.getState().isEndState()) {
throw new InvalidTaskStateException(
Expand Down Expand Up @@ -1448,7 +1448,7 @@ private Task requestChanges(String taskId, boolean force)
task = (TaskImpl) getTask(taskId);
task = (TaskImpl) beforeRequestChangesManager.beforeRequestChanges(task);

TaskImpl oldTask = duplicateTaskExactly(task);
final TaskImpl oldTask = duplicateTaskExactly(task);

if (force && task.getState().isEndState()) {
throw new InvalidTaskStateException(
Expand Down Expand Up @@ -1593,7 +1593,7 @@ private Task cancelClaim(String taskId, boolean forceUnclaim, boolean keepOwner)
try {
taskanaEngine.openConnection();
task = (TaskImpl) getTask(taskId);
TaskImpl oldTask = duplicateTaskExactly(task);
final TaskImpl oldTask = duplicateTaskExactly(task);

TaskState state = task.getState();
if (!checkEditTasksPerm(task)) {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<version.json>20240303</version.json>

<!-- build dependencies -->
<version.checkstyle>10.14.0</version.checkstyle>
<version.checkstyle>10.17.0</version.checkstyle>
<version.google-java-format>1.20.0</version.google-java-format>
<version.maven.checkstyle>3.4.0</version.maven.checkstyle>
<version.maven.jar>3.4.2</version.maven.jar>
Expand Down

0 comments on commit 808f1e4

Please sign in to comment.