Skip to content

Commit

Permalink
Fixing a merge failure from previous PRs (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
severn-everett committed Apr 17, 2024
1 parent 84a4c13 commit 4216e73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/semver4j/internal/Comparator.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private static int compareIdentifiers(@NotNull final String a, @NotNull final St
}

@Nullable
private Integer checkAlphanumericPrerelease(@NotNull final String a, @NotNull final String b) {
private static Integer checkAlphanumericPrerelease(@NotNull final String a, @NotNull final String b) {
String[] tokenArrA = a.split(TRAILING_DIGITS_EXTRACT);
String[] tokenArrB = b.split(TRAILING_DIGITS_EXTRACT);
if (tokenArrA[0].equals(tokenArrB[0])) {
Expand Down

0 comments on commit 4216e73

Please sign in to comment.