in completing an anonymous class, the closing parenthesis should be inserted regardless of the pair bracket settings (IDEA-63392)

This commit is contained in:
peter.gromov
2010-12-23 18:32:16 +03:00
parent 11014fdc4e
commit 4240c6817e
6 changed files with 53 additions and 25 deletions
@@ -0,0 +1,11 @@
public class Bar {
{
new Thread(new Runnable() {
@Override
public void run() {
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
}
})
}
}
@@ -0,0 +1,6 @@
public class Bar {
{
new Thread(new Run<caret>)
}
}