Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix odd indenting of "else" in generated Java code #810

Merged
merged 2 commits into from
Jan 8, 2025

Conversation

lewisbru
Copy link
Contributor

@lewisbru lewisbru commented Jan 3, 2025

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
{
}

lewisbru and others added 2 commits January 3, 2025 13:42
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
{
}
@ankushdesai ankushdesai merged commit a7bbb1f into p-org:master Jan 8, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants