mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
disable add on demand static import for method reference qualifiers
IDEA-186826
This commit is contained in:
+1
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
+1
@@ -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