X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fmain%2FVersion.java;h=c405b7a42838fd0e8b61719693d0f7536fe99d22;hb=c63257e8cc0ba1a5aca9364b22171abe7279d479;hp=4148fc7e2496460d22e4499df2c93d27c99383be;hpb=3859fbff6761e38b282edf399d087fcac45f66cf;p=jSite2.git diff --git a/src/net/pterodactylus/jsite/main/Version.java b/src/net/pterodactylus/jsite/main/Version.java index 4148fc7..c405b7a 100644 --- a/src/net/pterodactylus/jsite/main/Version.java +++ b/src/net/pterodactylus/jsite/main/Version.java @@ -21,14 +21,13 @@ package net.pterodactylus.jsite.main; /** * Container for version information. - * + * * @author David Roden <bombe@freenetproject.org> - * @version $Id$ */ public class Version implements Comparable { /** The version of the application. */ - private static final Version VERSION = new Version(0, 9, 0); + private static final Version VERSION = new Version(0, 99, 0); /** The major level of the version. */ private final int major; @@ -42,7 +41,7 @@ public class Version implements Comparable { /** * Creates a new version with the given major level and minor and patch * levels set to 0. - * + * * @param major * The major level of the version */ @@ -53,7 +52,7 @@ public class Version implements Comparable { /** * Creates a new version with the given major and minor level and the patch * level set to 0. - * + * * @param major * The major level of the version * @param minor @@ -65,7 +64,7 @@ public class Version implements Comparable { /** * Creates a new version with the given major, minor, and patch level. - * + * * @param major * The major level of the version * @param minor @@ -81,7 +80,7 @@ public class Version implements Comparable { /** * Returns the version of the application. - * + * * @return The version of the application */ public static Version getVersion() { @@ -90,7 +89,7 @@ public class Version implements Comparable { /** * Returns the major level of the version. - * + * * @return The major level of the version */ public int getMajor() { @@ -99,7 +98,7 @@ public class Version implements Comparable { /** * Returns the minor level of the version. - * + * * @return The minor level of the version */ public int getMinor() { @@ -108,7 +107,7 @@ public class Version implements Comparable { /** * Returns the patch level of the version. - * + * * @return The patch level of the version */ public int getPatch() {