Better parameter name.

This commit is contained in:
Gary Gregory 2022-03-08 10:25:58 -05:00
parent 0013a996d2
commit 07b78ca38d
1 changed files with 3 additions and 3 deletions

View File

@ -208,13 +208,13 @@ public enum JavaVersion {
* corresponding constant of this enumeration class. This method is used
* internally.
*
* @param nom the Java version as string
* @param versionStr the Java version as string
* @return the corresponding enumeration constant or <b>null</b> if the
* version is unknown
*/
// helper for static importing
static JavaVersion getJavaVersion(final String nom) {
return get(nom);
static JavaVersion getJavaVersion(final String versionStr) {
return get(versionStr);
}
/**