smart enter during completion inside synchronized expression should put the caret inside the synchronized block

This commit is contained in:
peter
2016-04-29 22:56:19 +02:00
parent 4e3139ffda
commit 493794856b
4 changed files with 21 additions and 0 deletions
@@ -0,0 +1,7 @@
public class Bar {
{
String foo1 = "";
String foo2 = "";
synchronized (foo<caret>)
}
}
@@ -0,0 +1,9 @@
public class Bar {
{
String foo1 = "";
String foo2 = "";
synchronized (foo1) {
<caret>
}
}
}