Reporter | Greg Law (lothan) |
---|---|
Created | Jan 2, 2012 9:32:50 PM |
Updated | Feb 3, 2012 6:47:09 PM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Slava Tutushkin (slava.tutushkin) |
Subsystem | Code Completion |
Affected versions | 6.1.1 |
Fixed in build | No Fixed in build |
Create a block of code like this:
private void SomeMethod()
{
if(someTest)
DoSomething(); // This does something
}
If you surround the call to DoSomething() with braces, the closing brace is flush left:
private void SomeMethod()
{
if(someTest)
{
DoSomething(); // This does something
}
}
private void SomeMethod()
{
if(someTest)
DoSomething(); // This does something
}
If you surround the call to DoSomething() with braces, the closing brace is flush left:
private void SomeMethod()
{
if(someTest)
{
DoSomething(); // This does something
}
}