We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321ef00 commit 09e4f6aCopy full SHA for 09e4f6a
src/main/java/com/fasterxml/jackson/core/Version.java
@@ -148,6 +148,7 @@ public int compareTo(Version other)
148
if (diff == 0) {
149
diff = _patchLevel - other._patchLevel;
150
151
+ // Snapshot: non-snapshot AFTER snapshot, otherwise alphabetical
152
if (isSnapshot()) {
153
if (other.isSnapshot()) {
154
diff = _snapshotInfo.compareTo(other._snapshotInfo);
0 commit comments