Skip to content

Commit 9ec6841

Browse files
authored
Reformat Javadoc in .inject.spi.ConfigPropertyPlugin (#918)
Matched formatting for consistency. Fixes a broken link (shows in red in IntelliJ IDEA). Signed-off-by: Mahied Maruf <[email protected]>
1 parent 7edad28 commit 9ec6841

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

inject/src/main/java/io/avaje/inject/spi/ConfigPropertyPlugin.java

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,16 @@
88
* Plugin interface which contains the application properties used for wiring. Used with
99
* {@link io.avaje.inject.RequiresProperty} and {@link io.avaje.inject.Profile}.
1010
*
11-
* <p>The plugin is loaded via ServiceLoader and defaults to an implementation that uses {@link
12-
* System#getProperty(String)} and {@link System#getenv(String)}.
11+
* <p>The plugin is loaded via ServiceLoader and defaults to an implementation that uses
12+
* {@link System#getProperty(String)} and {@link System#getenv(String)}.
1313
*/
1414
@NullMarked
1515
public interface ConfigPropertyPlugin extends InjectExtension {
1616

17-
/**
18-
* Return a configuration value that might not exist.
19-
*/
17+
/** Return a configuration value that might not exist. */
2018
Optional<String> get(String property);
2119

22-
/**
23-
* Return true if the property is defined.
24-
*/
20+
/** Return true if the property is defined. */
2521
boolean contains(String property);
2622

2723
/** Return true if the property is not defined. */

0 commit comments

Comments
 (0)