IDEA-101570 Auto-Completing 'try' and 'finally' keywords does not honor next line brace placement

This commit is contained in:
peter
2013-02-26 17:19:19 +01:00
parent cb68737c83
commit fa438eb3d7
7 changed files with 68 additions and 26 deletions
@@ -0,0 +1,5 @@
class Foo {
{
try<caret>
}
}
@@ -0,0 +1,8 @@
class Foo {
{
try
{
<caret>
}
}
}
@@ -0,0 +1,5 @@
class Foo {
{
do<caret>
}
}
@@ -0,0 +1,7 @@
class Foo {
{
do {
<caret>
}
}
}