fix javadoc for isJavaVersionAtMost (#638)

the javadoc for isJavaVersionAtMost was the same as for isJavaVersionAtLeast! They sure don't do the same thing :)
This commit is contained in:
John R. D'Orazio 2020-11-17 21:06:27 +01:00 committed by GitHub
parent 61e82e832e
commit 2adf71bf23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1781,7 +1781,7 @@ public class SystemUtils {
* </p>
*
* @param requiredVersion the required version, for example 1.31f
* @return {@code true} if the actual version is equal or greater than the required version
* @return {@code true} if the actual version is equal or less than the required version
* @since 3.9
*/
public static boolean isJavaVersionAtMost(final JavaVersion requiredVersion) {