mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
space (IDEA-67070)
This commit is contained in:
+2
-2
@@ -4,7 +4,7 @@ public class Autoboxing {
|
||||
}
|
||||
|
||||
public boolean compare(Short s, Integer i) {
|
||||
return <error descr="Operator '==' cannot be applied to 'java.lang.Integer','java.lang.Short'">i == s</error>; //comparing as references
|
||||
return <error descr="Operator '==' cannot be applied to 'java.lang.Integer', 'java.lang.Short'">i == s</error>; //comparing as references
|
||||
}
|
||||
|
||||
void f(Integer i) {
|
||||
@@ -15,7 +15,7 @@ public class Autoboxing {
|
||||
|
||||
{
|
||||
Object data = 1;
|
||||
boolean is1 = <error descr="Operator '==' cannot be applied to 'java.lang.Object','int'">data == 1</error>;
|
||||
boolean is1 = <error descr="Operator '==' cannot be applied to 'java.lang.Object', 'int'">data == 1</error>;
|
||||
}
|
||||
|
||||
//IDEADEV-5549: Short and double are convertible
|
||||
|
||||
Reference in New Issue
Block a user