This commit is contained in:
Gary Gregory 2024-05-02 15:42:20 -04:00
parent ae5f518e56
commit 2ecc5c048c

View File

@ -330,7 +330,7 @@ private static float toFloatVersion(final String value) {
} }
/** /**
* Whether this version of Java is at least the version of Java passed in. * Tests whether this version of Java is at least the version of Java passed in.
* *
* <p>For example:<br> * <p>For example:<br>
* {@code myVersion.atLeast(JavaVersion.JAVA_1_4)}</p> * {@code myVersion.atLeast(JavaVersion.JAVA_1_4)}</p>
@ -343,7 +343,7 @@ public boolean atLeast(final JavaVersion requiredVersion) {
} }
/** /**
* Whether this version of Java is at most the version of Java passed in. * Tests whether this version of Java is at most the version of Java passed in.
* *
* <p>For example:<br> * <p>For example:<br>
* {@code myVersion.atMost(JavaVersion.JAVA_1_4)}</p> * {@code myVersion.atMost(JavaVersion.JAVA_1_4)}</p>