mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
convert primitive to boxed when appropriate (IDEA-60267)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// "Convert 'int' to 'java.lang.Integer'" "true"
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
Set<Integer> f;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Convert 'int' to 'java.lang.Integer'" "true"
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
Set<? extends Integer> f;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Convert 'int' to 'java.lang.Integer'" "true"
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
Set<in<caret>t> f;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Convert 'int' to 'java.lang.Integer'" "true"
|
||||
import java.util.*;
|
||||
|
||||
class Test {
|
||||
Set<? extends in<caret>t> f;
|
||||
}
|
||||
Reference in New Issue
Block a user