Skip to content

Commit 262cc4f

Browse files
committed
Fix raw usage of generic class
1 parent c6cab73 commit 262cc4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/java/com/datastax/oss/driver/internal/core/util/concurrent/ScheduledTaskCapturingEventLoop.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
@SuppressWarnings("FunctionalInterfaceClash") // does not matter for test code
4848
public class ScheduledTaskCapturingEventLoop extends DefaultEventLoop {
4949

50-
private final BlockingQueue<CapturedTask> capturedTasks = new ArrayBlockingQueue<>(100);
50+
private final BlockingQueue<CapturedTask<?>> capturedTasks = new ArrayBlockingQueue<>(100);
5151

5252
public ScheduledTaskCapturingEventLoop(EventLoopGroup parent) {
5353
super(parent);

0 commit comments

Comments
 (0)