Skip to content

Commit

Permalink
Revert behavior change, and just run tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Mar 1, 2021
1 parent 7812e25 commit 048f899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/util/VersionNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public String toString() {
* Represents a string in the version item list, usually a qualifier.
*/
private static class StringItem implements Item {
private final static String[] QUALIFIERS = {"alpha", "beta", "milestone", "rc", "snapshot", "", "sp"};
private final static String[] QUALIFIERS = {"snapshot", "alpha", "beta", "milestone", "rc", "", "sp"};

private final static List<String> _QUALIFIERS = Arrays.asList(QUALIFIERS);

Expand Down

0 comments on commit 048f899

Please sign in to comment.