mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
hide fixes which expose unresolved type parameters; add fixes for boxing
IDEA-150081
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "Change parameter 'a' type to 'java.lang.Long[]'" "true"
|
||||
|
||||
class Base {
|
||||
void m(Long[] a) {
|
||||
mg(a);
|
||||
}
|
||||
|
||||
<T> void mg(T[] p) {}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Change parameter 'a' type to 'java.lang.Long[]'" "true"
|
||||
|
||||
class Base {
|
||||
void m(long[] a) {
|
||||
mg(<caret>a);
|
||||
}
|
||||
|
||||
<T> void mg(T[] p) {}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Change parameter 'a' type to 'T[]'" "false"
|
||||
|
||||
class Base {
|
||||
void m(long[] a) {
|
||||
mg(<caret>a);
|
||||
}
|
||||
|
||||
<T> void mg(T[] p) {}
|
||||
}
|
||||
Reference in New Issue
Block a user