Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
ikhoon committed Feb 21, 2025
1 parent f8c7283 commit 59e0811
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ static <T extends Weighted> SimpleLoadBalancer<T> ofWeightedRandom(T... candidat
*
* @param weightFunction the weight function which returns the weight of the candidate.
*/
static <T, C> UpdatableLoadBalancer<T> ofRampingUp(Iterable<? extends T> candidates,
ToIntFunction<? super T> weightFunction) {
static <T> UpdatableLoadBalancer<T> ofRampingUp(Iterable<? extends T> candidates,
ToIntFunction<? super T> weightFunction) {
requireNonNull(candidates, "candidates");
requireNonNull(weightFunction, "weightFunction");
return LoadBalancer.<T>builderForRampingUp(candidates, weightFunction)
Expand Down

0 comments on commit 59e0811

Please sign in to comment.