Skip to content

Commit

Permalink
[LANG-1511] SystemUtils is missing important documentation
Browse files Browse the repository at this point in the history
Javadoc fix
  • Loading branch information
garydgregory committed Nov 17, 2024
1 parent f43d331 commit 0fde051
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/lang3/SystemUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -2203,7 +2203,7 @@ public static boolean isJavaAwtHeadless() {
/**
* Tests whether the Java version at least the requested version.
* <p>
* The result is based on the system property saved in {@value #JAVA_SPECIFICATION_VERSION}.
* The result is based on the system property saved in {@link #JAVA_SPECIFICATION_VERSION}.
* </p>
*
* @param requiredVersion the required version, for example 1.31f
Expand All @@ -2216,7 +2216,7 @@ public static boolean isJavaVersionAtLeast(final JavaVersion requiredVersion) {
/**
* Tests whether the Java version at most the requested version.
* <p>
* The result is based on the system property saved in {@value #JAVA_SPECIFICATION_VERSION}.
* The result is based on the system property saved in {@link #JAVA_SPECIFICATION_VERSION}.
* </p>
*
* @param requiredVersion the required version, for example 1.31f
Expand Down

0 comments on commit 0fde051

Please sign in to comment.