You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 <[email protected]>
0 commit comments