mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
finishing lookup with a smart enter should actually work like a smart enter
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class Bar {
|
||||
{
|
||||
String nullity = "";
|
||||
if (this != nul<caret>)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public class Bar {
|
||||
{
|
||||
String nullity = "";
|
||||
if (this != null) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-2
@@ -5,7 +5,6 @@ public class MyJavaClass {
|
||||
|
||||
{
|
||||
|
||||
List l = new ArrayList(239);
|
||||
<caret>
|
||||
List l = new ArrayList(239);<caret>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,8 +2,7 @@ public class Foo {
|
||||
|
||||
{
|
||||
Foo foo = null;
|
||||
Foo bar = id(foo);
|
||||
<caret>
|
||||
Foo bar = id(foo);<caret>
|
||||
}
|
||||
|
||||
Foo id(Foo foo) {return foo;}
|
||||
|
||||
Reference in New Issue
Block a user