openapi-processor / openapi-processor-core

moved into openapi-processor-base
Apache License 2.0
7 stars 5 forks source link

unwanted method with multiple success responses #80

Closed hauner closed 2 years ago

hauner commented 3 years ago

an endpoint response definition like this:

responses:
  200:
  content:
    application/json:
      schema:
        type: array
        items:
          type: string
  204:
    description: ...

generates the methods

  getFooApplicationJson()
  getFooInvalid()

getFooInvalid() is an unwanted method caused by the 204 response.