whitespace fixups
[jSite2.git] / src / net / pterodactylus / jsite / main / Version.java
index adc8b86..c405b7a 100644 (file)
@@ -21,7 +21,7 @@ package net.pterodactylus.jsite.main;
 
 /**
  * Container for version information.
- * 
+ *
  * @author David Roden <bombe@freenetproject.org>
  */
 public class Version implements Comparable<Version> {
@@ -41,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
         */
@@ -52,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
@@ -64,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
@@ -80,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() {
@@ -89,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() {
@@ -98,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() {
@@ -107,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() {