finishing lookup with a smart enter should actually work like a smart enter

This commit is contained in:
peter
2011-09-14 18:21:02 +02:00
parent 15d570c618
commit 1a9b32f1b8
12 changed files with 47 additions and 44 deletions
@@ -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>
}
}
}
@@ -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;}