whitespace fixups
[jSite2.git] / src / net / pterodactylus / jsite / main / Version.java
index 4148fc7..c405b7a 100644 (file)
@@ -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<Version> {
 
        /** 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<Version> {
        /**
         * Creates a new version with the given major level and minor and patch
         * levels set to <code>0</code>.
-        * 
+        *
         * @param major
         *            The major level of the version
         */
@@ -53,7 +52,7 @@ public class Version implements Comparable<Version> {
        /**
         * Creates a new version with the given major and minor level and the patch
         * level set to <code>0</code>.
-        * 
+        *
         * @param major
         *            The major level of the version
         * @param minor
@@ -65,7 +64,7 @@ public class Version implements Comparable<Version> {
 
        /**
         * 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<Version> {
 
        /**
         * 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<Version> {
 
        /**
         * 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<Version> {
 
        /**
         * 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<Version> {
 
        /**
         * Returns the patch level of the version.
-        * 
+        *
         * @return The patch level of the version
         */
        public int getPatch() {