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: do not crash on yield static imports #499

Merged

Conversation

clementdessoude
Copy link
Contributor

What changed with this PR:

Example

// Input
void should_not_throw_on_yield_static_imports() {
        Thread.yield ();
        yield();
        yield(a);
}

// Output
void should_not_throw_on_yield_static_imports() {
    Thread.yield();
    yield();
    yield (a);
}

Relative issues or prs:

Fix #498

@clementdessoude clementdessoude merged commit bd29090 into jhipster:main Aug 28, 2021
@clementdessoude clementdessoude deleted the fix/yield-static-imports branch August 28, 2021 12:10
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.

Parsing Error with static import Thread.yield
1 participant