-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
I found a bug that when an interface has a method named without get prefix it will not show in generated swagger:
This interface
public interface NoGetInterface {
String foo();
}
will produce empty schema:
components:
schemas:
NoGetInterface:
type: object
where in my opinion it should have foo field, like this:
components:
schemas:
NoGetInterface:
type: object
properties:
foo:
type: string
Metadata
Metadata
Assignees
Labels
No labels