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

#453 - Compile error with nested enum type not imported in generated … #455

Merged
merged 1 commit into from
Jun 20, 2024

Conversation

rbygrave
Copy link
Contributor

@rbygrave rbygrave commented Jun 20, 2024

…server code

e.g.

public class Foo {
    public enum NestedEnum {
        A, B, C
    }
}
@Controller
class TestController {
    @Post
    void foo(Foo.NestedEnum value) {
        System.out.println(value);
    }

…server code

e.g.
```
public class Foo {
    public enum NestedEnum {
        A, B, C
    }
}
```

```
@controller
class TestController {
    @post
    void foo(Foo.NestedEnum value) {
        System.out.println(value);
    }
```
@rbygrave rbygrave added this to the 2.6 milestone Jun 20, 2024
@rbygrave rbygrave self-assigned this Jun 20, 2024
@rbygrave rbygrave linked an issue Jun 20, 2024 that may be closed by this pull request
@rbygrave rbygrave requested a review from SentryMan June 20, 2024 10:15
@rbygrave rbygrave merged commit b885da3 into master Jun 20, 2024
7 checks passed
@rbygrave rbygrave deleted the feature/453-nested-enum branch June 20, 2024 10:19
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.

Nested parent class not imported in generated server code
1 participant