Skip to content

Commit

Permalink
Router: Change name of STATUS to QUALIFIER, move it after BUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Oct 7, 2023
1 parent 499106c commit 6ada2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions router/java/src/net/i2p/router/RouterVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public class RouterVersion {
public final static String ID = "Git";
public final static String VERSION = CoreVersion.VERSION;
/** for example: "beta", "alpha", "rc" */
public final static String STATUS = "";
public final static String QUALIFIER = "";
public final static long BUILD = 5;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + STATUS + BUILD + EXTRA;
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;

public static void main(String args[]) {
System.out.println("I2P Router version: " + FULL_VERSION);
Expand Down

0 comments on commit 6ada2f3

Please sign in to comment.