LANG-1699: Corrected value of SystemUtils.JAVA_VENDOR (#1066)

This commit is contained in:
Darren Coleman 2023-06-15 17:13:31 +01:00 committed by GitHub
parent c646f494bb
commit def9f76bca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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.