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
The following commit(s) were added to refs/heads/master by this push: new def9f76bc LANG-1699: Corrected value of SystemUtils.JAVA_VENDOR (#1066) def9f76bc is described below commit def9f76bca6395e5e026b27b1ad645fd2b92fc86 Author: Darren Coleman <dcole...@redhat.com> AuthorDate: Thu Jun 15 17:13:31 2023 +0100 LANG-1699: Corrected value of SystemUtils.JAVA_VENDOR (#1066) --- src/main/java/org/apache/commons/lang3/SystemUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/SystemUtils.java b/src/main/java/org/apache/commons/lang3/SystemUtils.java index fb945b59c..099430a7e 100644 --- a/src/main/java/org/apache/commons/lang3/SystemUtils.java +++ b/src/main/java/org/apache/commons/lang3/SystemUtils.java @@ -438,10 +438,10 @@ public class SystemUtils { * sync with that System property. * </p> * - * @see SystemProperties#getJavaVersion() + * @see SystemProperties#getJavaVendor() * @since Java 1.1 */ - public static final String JAVA_VENDOR = SystemProperties.getJavaVersion(); + public static final String JAVA_VENDOR = SystemProperties.getJavaVendor(); /** * The {@code java.vendor.url} System Property. Java vendor URL.