fix javadoc of Slf4jEnvUtil

resolves #423

Signed-off-by: Manfred Hanke <Manfred.Hanke@tngtech.com>
This commit is contained in:
Manfred Hanke 2024-08-08 21:26:53 +02:00 committed by Ceki Gülcü
parent 46b5ea54a6
commit 0df43e9e53
1 changed files with 4 additions and 7 deletions

View File

@ -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
@ -57,12 +55,11 @@ public class Slf4jEnvUtil {
}
/**
* <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();