mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
disable add on demand static import for method reference qualifiers
IDEA-186826
This commit is contained in:
@@ -8,6 +8,7 @@ import static java.util.Arrays.*;
|
||||
public class Foo {
|
||||
{
|
||||
Block<Integer[]> b2 = Arrays::sort;
|
||||
Block<Integer> bBroken = Arrays::sort;
|
||||
sort((byte[])null);
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ import java.util.*;
|
||||
public class Foo {
|
||||
{
|
||||
Block<Integer[]> b2 = Arrays::sort;
|
||||
Block<Integer> bBroken = Arrays::sort;
|
||||
Arra<caret>ys.sort((byte[])null);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user