Skip to content

Commit

Permalink
renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
lindt committed Jun 20, 2021
1 parent 45bb08c commit 75b2f78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class PartitionedBlockingQueue<Key, Value> {
private final List<Semaphore> semaphores;
private final List<Deque<Value>> queues;

public PartitionedBlockedQueue(int numberOfPartitions) {
public PartitionedBlockingQueue(int numberOfPartitions) {
assert numberOfPartitions > 0 : "need to have at least a single partition";

this.numberOfPartitions = numberOfPartitions;
Expand Down

0 comments on commit 75b2f78

Please sign in to comment.