Polish document and name of parameter (#1738)
- doc: Fix a typo in description of booting options for sentinel-dashboard - Fix mismatched name of parameter to its comment for VersionUtils.parseVersion()
This commit is contained in:
parent
cc2d1a69a9
commit
55a8294ab0
|
|
@ -32,16 +32,16 @@ public final class VersionUtils {
|
|||
/**
|
||||
* Parse version of Sentinel from raw string.
|
||||
*
|
||||
* @param versionFull version string
|
||||
* @param verStr version string
|
||||
* @return parsed {@link SentinelVersion} if the version is valid; empty if
|
||||
* there is something wrong with the format
|
||||
*/
|
||||
public static Optional<SentinelVersion> parseVersion(String s) {
|
||||
if (StringUtil.isBlank(s)) {
|
||||
public static Optional<SentinelVersion> parseVersion(String verStr) {
|
||||
if (StringUtil.isBlank(verStr)) {
|
||||
return Optional.empty();
|
||||
}
|
||||
try {
|
||||
String versionFull = s;
|
||||
String versionFull = verStr;
|
||||
SentinelVersion version = new SentinelVersion();
|
||||
|
||||
// postfix
|
||||
|
|
|
|||
Loading…
Reference in New Issue