Skip to content

Commit

Permalink
Fixed javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez committed Apr 22, 2024
1 parent 3edebd4 commit 7364458
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,6 @@ static Class<?> rawTypeOf(final Type type) {

/**
* Constructs a representation of all {@link Property} names contained in the {@link ConfigMappingInterface}.
* <p>
*
* <ul>
* <li>The first level <code>Map</code> key is each <code>Class</code> name that is part of the mapping</li>
Expand Down Expand Up @@ -1054,7 +1053,6 @@ public static Map<String, Map<String, Set<String>>> getNames(final ConfigMapping

/**
* Constructs a representation of all {@link Property} contained in the {@link ConfigMappingInterface}.
* <p>
*
* <ul>
* <li>The first level <code>Map</code> key is each <code>Class</code> that is part of the mapping</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ public static void registerConfigMappings(final SmallRyeConfig config, final Set
}

/**
* Registers additional <code>ConfigProperties</code>> annotated classes with a {@link SmallRyeConfig} instance.
* Registers additional <code>ConfigProperties</code> annotated classes with a {@link SmallRyeConfig} instance.
* <p>
* The recommended method of registering <code>ConfigProperties</code>> is with a
* The recommended method of registering <code>ConfigProperties</code> is with a
* {@link SmallRyeConfigBuilder#withMapping(Class, String)}. In certain cases, this is not possible (ex. a CDI
* runtime), where mapping classes can only be discovered after the <code>Config</code> instance creation.
*
* @param config the {@link SmallRyeConfig} instance
* @param configClasses a <code>Set</code> of <code>ConfigProperties</code>> annotated classes with prefixes
* @throws ConfigValidationException if a <code>ConfigProperties</code>> cannot be registed with the
* @param configClasses a <code>Set</code> of <code>ConfigProperties</code> annotated classes with prefixes
* @throws ConfigValidationException if a <code>ConfigProperties</code> cannot be registed with the
* {@link SmallRyeConfig} instance
*/
public static void registerConfigProperties(final SmallRyeConfig config, final Set<ConfigClassWithPrefix> configClasses)
Expand Down

0 comments on commit 7364458

Please sign in to comment.