Better parameter name.
This commit is contained in:
parent
0013a996d2
commit
07b78ca38d
|
@ -208,13 +208,13 @@ public enum JavaVersion {
|
||||||
* corresponding constant of this enumeration class. This method is used
|
* corresponding constant of this enumeration class. This method is used
|
||||||
* internally.
|
* 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
|
* @return the corresponding enumeration constant or <b>null</b> if the
|
||||||
* version is unknown
|
* version is unknown
|
||||||
*/
|
*/
|
||||||
// helper for static importing
|
// helper for static importing
|
||||||
static JavaVersion getJavaVersion(final String nom) {
|
static JavaVersion getJavaVersion(final String versionStr) {
|
||||||
return get(nom);
|
return get(versionStr);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue