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(java): support record annotation in java (#182) #192

Merged
merged 2 commits into from
Aug 13, 2024

Conversation

mikehaertl
Copy link
Contributor

Before:

package com;

public record ExampleRecord(
    Integer id
) {
}

After:

package com;

/**
 * [TODO:description]
 *
 */
public record ExampleRecord(
    Integer id
) {
}

@danymat danymat merged commit dc50715 into danymat:main Aug 13, 2024
1 of 4 checks passed
@danymat
Copy link
Owner

danymat commented Aug 13, 2024

Thanks for the catch

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