mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
method call type: erasure should not be applied if method doesn't have type params; < 1.8 (IDEA-132810)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
class Test {
|
||||
|
||||
void testCall(final Set set) {
|
||||
for (String position : sortInvoice(set)) {}
|
||||
}
|
||||
|
||||
private List<String> sortInvoice(Set<Integer> set) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user