-
13 Apr 2012 12:57 AM #1
One-statement blocks don't get indented
One-statement blocks don't get indented
When I reopen my project the IDE apparently runs some sort of auto-indentation against all my code. This results in the following change everywhere every time I open my project:
becomesCode:if (something) doStuff();However, if I add curly braces around the body indentation works properly:Code:if (something) doStuff();
Code:if (something) { doStuff(); }
You found a bug! We've classified it as
DSGNR-1745
.
We encourage you to continue the discussion and to find an acceptable workaround while we work on a permanent fix.


Reply With Quote