Skip to content

Commit

Permalink
fix javadoc of Slf4jEnvUtil
Browse files Browse the repository at this point in the history
resolves #423

Signed-off-by: Manfred Hanke <[email protected]>
  • Loading branch information
hankem authored and ceki committed Aug 8, 2024
1 parent 46b5ea5 commit 0df43e9
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions slf4j-api/src/main/java/org/slf4j/helpers/Slf4jEnvUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ public class Slf4jEnvUtil {


/**
* <p>Returns the current version of logback, or null if data is not
* available.
* </p>
* Returns the current version of slf4j, or null if data is not available.
*
* @return current version or null if missing version data
* @since 2.0.14
Expand All @@ -57,12 +55,11 @@ static public String slf4jVersion() {
}

/**
* <p>Returns the current version of logback via class.getModule() or null if data is not
* available.
* </p>
* Returns the current version of slf4j via class.getModule()
* or null if data is not available.
*
* @since 2.0.14
* @return current version or null if missing version data
* @since 2.0.14
*/
static private String slf4jVersionByModule() {
Module module = Slf4jEnvUtil.class.getModule();
Expand Down

0 comments on commit 0df43e9

Please sign in to comment.