don't force braces when completing in if condition

This commit is contained in:
peter
2012-04-27 16:48:01 +02:00
parent d424aa99a8
commit 9684af1c5a
4 changed files with 20 additions and 1 deletions
@@ -0,0 +1,6 @@
public class Foo {
void foo(boolean flag) {
if ('\\' == File.separach<caret>)
System.out.println();
}
}