Skip to content

Commit

Permalink
Fix Codestyle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
solth committed Sep 2, 2021
1 parent 8f66044 commit c2d9fbc
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import java.time.temporal.ChronoUnit;
import java.util.Objects;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;

import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.logging.log4j.LogManager;
Expand Down Expand Up @@ -278,15 +277,15 @@ public String getStateDescription() {
* .PREPARE_FOR_RESTART— and is able to restart after cloning and replacing
* it.</dd>
* <dt>{@code STOPPING}</dt>
* <dd>The thread has received a request to interrupt but didn’t stop
* <dd>The thread has received a request to interrupt but did not stop
* yet.</dd>
* <dt>{@code WORKING}</dt>
* <dd>The thread is in operation.</dd>
* </dl>
*
* @return the task state
*/
public TaskState getTaskState() {
public TaskState getTaskState() {
switch (getState()) {
case NEW:
return TaskState.NEW;
Expand Down

0 comments on commit c2d9fbc

Please sign in to comment.