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 validation test for Java 15 #1052

Merged
merged 2 commits into from May 19, 2020
Merged

Commits on May 19, 2020

  1. Fix validation test for Java 15

    With second preview the constructors of records now get the same access
    modifier than the class (see JDK-8242479).
    
    For "record WithoutFields" this leads to an private empty default
    constructor which is filtered out by PrivateEmptyNoArgConstructorFilter.
    
    Removing private modifiers from records to have consistent results
    between first and second preview.
    marchof committed May 19, 2020
    Copy the full SHA
    2ad944d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    3dc1b5a View commit details
    Browse the repository at this point in the history