Skip to content

Commit

Permalink
Fix minor PMD warnings (unnecessary finals)
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Apr 3, 2016
1 parent 2c5c1d9 commit f16a0c5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2654,20 +2654,20 @@ public int characteristics() {
}
}

/** A reusable task that performs the maintenance work used to avoid wrapping by ForkJoinPool. */
/** A reusable task that performs the maintenance work; used to avoid wrapping by ForkJoinPool. */
final class PerformCleanupTask extends ForkJoinTask<Void> implements Runnable {
private static final long serialVersionUID = 1L;

@Override
public final Void getRawResult() {
public Void getRawResult() {
return null;
}

@Override
public final void setRawResult(Void v) {}
public void setRawResult(Void v) {}

@Override
public final boolean exec() {
public boolean exec() {
performCleanUp();
return true;
}
Expand Down

0 comments on commit f16a0c5

Please sign in to comment.