mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
IDEA-221376 IntelliJ generates unnecessary cast with raw type
GitOrigin-RevId: 47578006a2766c17c6af8833085419a463a0e3c9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
bb7a79b54a
commit
9dc70cc524
+10
@@ -0,0 +1,10 @@
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.Future;
|
||||
|
||||
class Foo {
|
||||
{
|
||||
List<? extends List<? extends Future<?>>> list = new ArrayList<>();
|
||||
list.stream().map(l -> l.stream().map(f -> f.isD<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user