Declare all possibly-static methods as static.
[jSite.git] / src / de / todesbaum / jsite / main / Version.java
index 2b80c36..373703c 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite - a tool for uploading websites into Freenet
- * Copyright (C) 2006 David Roden
+ * jSite - Version.java - Copyright © 2006–2012 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -100,6 +99,7 @@ public class Version implements Comparable<Version> {
        /**
         * {@inheritDoc}
         */
+       @Override
        public int compareTo(Version version) {
                int lessComponents = Math.min(components.length, version.components.length);
                for (int index = 0; index < lessComponents; index++) {