This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit f2c35205efb15a4cf73ce65dc57fcea2acbe948a Author: Gary Gregory <[email protected]> AuthorDate: Fri Dec 19 17:36:29 2025 -0500 Javadoc --- src/main/java/org/apache/commons/lang3/SystemUtils.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/SystemUtils.java b/src/main/java/org/apache/commons/lang3/SystemUtils.java index 4f911b641..deb1c1c0f 100644 --- a/src/main/java/org/apache/commons/lang3/SystemUtils.java +++ b/src/main/java/org/apache/commons/lang3/SystemUtils.java @@ -380,6 +380,9 @@ public class SystemUtils { */ public static final String JAVA_SPECIFICATION_VERSION = SystemProperties.getJavaSpecificationVersion(); + /** + * A constant for the Java version, may be null + */ private static final JavaVersion JAVA_SPECIFICATION_VERSION_AS_ENUM = JavaVersion.get(JAVA_SPECIFICATION_VERSION); /**
