Skip to content

Commit 75b2f78

Browse files
committed
renamed
1 parent 45bb08c commit 75b2f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/io/github/mobility/university/concurrency/PartitionedBlockingQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public class PartitionedBlockingQueue<Key, Value> {
2424
private final List<Semaphore> semaphores;
2525
private final List<Deque<Value>> queues;
2626

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

3030
this.numberOfPartitions = numberOfPartitions;

0 commit comments

Comments
 (0)