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

Config Doc - Avoid annotations in primitive type name #42930

Merged

Commits on Aug 31, 2024

  1. Config Doc - Avoid annotations in primitive type name

    While this was already correctly handled for declared types, primitive
    types don't have an API to get the name without the annotations being
    present (toString() contains the annotations and there is no other way
    to get a string representation of the type...).
    
    Fixing it by making sure we get to the type name.
    
    This avoids having things like:
    @io.smallrye.config.WithConverter(io.quarkus.runtime.init.InitRuntimeConfig.BooleanConverter.class) boolean
    in the doc.
    Or Bean Validation constraints when they are used.
    gsmet committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    59bd385 View commit details
    Browse the repository at this point in the history
  2. Config Doc - Fix base URL of JDK classes

    Apparently it has changed to include the module name so let's update it.
    gsmet committed Aug 31, 2024
    Configuration menu
    Copy the full SHA
    01ea052 View commit details
    Browse the repository at this point in the history