We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601adf4 commit 2cc19d5Copy full SHA for 2cc19d5
util/src/test/java/org/microbule/util/collection/RoundRobinTest.java
@@ -19,7 +19,7 @@ public void testWithEmptyList() {
19
20
@Test
21
public void testWithNullList() {
22
- RoundRobin<String> balancer = new RoundRobin<>(new LinkedList<>());
+ RoundRobin<String> balancer = new RoundRobin<>(null);
23
assertNull(balancer.nextItem());
24
}
25
0 commit comments