summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/com/earth2me/essentials/update/Version.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-10-27 00:03:16 +0200
committersnowleo <schneeleo@gmail.com>2011-10-27 00:03:16 +0200
commit60b9d4fc80c881ce5548f7387c3de0d9fc5a7637 (patch)
treeca3fb9676c76f8700bda0bd21f9ffcc579d46c42 /EssentialsUpdate/src/com/earth2me/essentials/update/Version.java
parent7622c5c5108f406d3fbb285de0d2446fdc3127dd (diff)
downloadEssentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.gz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.lz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.xz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.zip
Some cleanup, refactoring of EssentialsHelp class
Diffstat (limited to 'EssentialsUpdate/src/com/earth2me/essentials/update/Version.java')
-rw-r--r--EssentialsUpdate/src/com/earth2me/essentials/update/Version.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/EssentialsUpdate/src/com/earth2me/essentials/update/Version.java b/EssentialsUpdate/src/com/earth2me/essentials/update/Version.java
index 8e6cbc97f..a82f49abf 100644
--- a/EssentialsUpdate/src/com/earth2me/essentials/update/Version.java
+++ b/EssentialsUpdate/src/com/earth2me/essentials/update/Version.java
@@ -147,7 +147,7 @@ public class Version implements Comparable<Version>
hash = 71 * hash + this.major;
hash = 71 * hash + this.minor;
hash = 71 * hash + this.build;
- hash = 71 * hash + (this.type != null ? this.type.hashCode() : 0);
+ hash = 71 * hash + (this.type == null ? 0 : this.type.hashCode());
return hash;
}