refactor: Actually use the variable which contained the string
This commit is contained in:
parent
50e0ab5d48
commit
28652b7e00
|
@ -30,7 +30,7 @@ public record SemVerImpl(int major, int minor, int patch, String prerelease, Str
|
|||
int minor = Integer.parseInt(matcher.group("minor"));
|
||||
// minecraft treats the `patch` component as optional...
|
||||
@Nullable String patchString = matcher.group("patch");
|
||||
int patch = patchString == null ? 0 : Integer.parseInt(matcher.group("patch"));
|
||||
int patch = patchString == null ? 0 : Integer.parseInt(patchString);
|
||||
String prerelease = matcher.group("prerelease");
|
||||
String buildmetadata = matcher.group("buildmetadata");
|
||||
return new SemVerImpl(major, minor, patch, prerelease, buildmetadata);
|
||||
|
|
Loading…
Reference in a new issue