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: put space after annotation in UnannClassTypes #455

Merged

Conversation

clementdessoude
Copy link
Contributor

What changed with this PR:

Example

    // Input
    SomeClass.@Valid SomeInnerClass someInnerClass = someClass.getInteractions().get(0);

    void process(
        Map.@NonNull Entry<String, SkeletonConfiguration> entry,
        @NonNull Map<String, Object> context
    ) {}


  // Output
  SomeClass.@Valid SomeInnerClass someInnerClass = someClass
    .getInteractions()
    .get(0);

  void process(
    Map.@NonNull Entry<String, SkeletonConfiguration> entry,
    @NonNull Map<String, Object> context
  ) {}

Relative issues or prs:

Fix #453
Fix #444

@clementdessoude clementdessoude merged commit 28a94a7 into jhipster:main Mar 13, 2021
@clementdessoude clementdessoude deleted the fix/space-after-annotation branch March 13, 2021 17:34
This was referenced Mar 15, 2021
This was referenced Mar 15, 2021
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.

Formatter produces uncompilable code decorator on inner class hosed
2 participants