Commit a7bbb1f
Fix odd indenting of "else" in generated Java code (#810)
Previously, normal if/else statements would be formatted like:
if..
{
}
else
{
}
and if/else blocks with an empty if block would be formatted like:
if...
{} else
{
}
Made all if/else statments be formatted like
if
{
}
else
{
}
Co-authored-by: Ankush Desai <ankushdesai@users.noreply.github.com>1 parent 49055ad commit a7bbb1f
1 file changed
+4
-3
lines changedLines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
445 | 445 | | |
446 | 446 | | |
447 | 447 | | |
448 | | - | |
| 448 | + | |
| 449 | + | |
449 | 450 | | |
450 | 451 | | |
451 | 452 | | |
| |||
454 | 455 | | |
455 | 456 | | |
456 | 457 | | |
457 | | - | |
| 458 | + | |
458 | 459 | | |
459 | 460 | | |
460 | 461 | | |
| |||
964 | 965 | | |
965 | 966 | | |
966 | 967 | | |
967 | | - | |
| 968 | + | |
0 commit comments