Skip to content

Commit

Permalink
remove unless package
Browse files Browse the repository at this point in the history
  • Loading branch information
crossoverJie committed Sep 26, 2024
1 parent 361719b commit 9c293c1
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ public class RandomBackoff implements BackoffStrategy {

@Override
public long nextBackoff() {
int random = (int) (Math.random() * 7 + 3);
return random;
return (int) (Math.random() * 7 + 3);
}

}

0 comments on commit 9c293c1

Please sign in to comment.