diff options
author | Michael Bien <[email protected]> | 2011-02-26 17:59:27 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-26 17:59:27 +0100 |
commit | be26200a6d2fbeff6df49aada0bcf7cad91fe64f (patch) | |
tree | d058fe9abcb2388cd480a16d95adb167f52284e1 /src/java/com/jogamp/common/util/VersionNumber.java | |
parent | a1c22f48aef28165b0112e3bab223fe5ea2fa4fd (diff) |
small cleanup in uitl package
- StringBuffer -> StringBuilder
- ReflectionUtil.getBaseName -> class.getSimpleName()
- cleanup imports, generics and @Override for all touched classes
Diffstat (limited to 'src/java/com/jogamp/common/util/VersionNumber.java')
-rw-r--r-- | src/java/com/jogamp/common/util/VersionNumber.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/java/com/jogamp/common/util/VersionNumber.java b/src/java/com/jogamp/common/util/VersionNumber.java index f0ba820..7e86e72 100644 --- a/src/java/com/jogamp/common/util/VersionNumber.java +++ b/src/java/com/jogamp/common/util/VersionNumber.java @@ -42,6 +42,7 @@ public class VersionNumber implements Comparable { protected VersionNumber() { } + @Override public final int hashCode() { // 31 * x == (x << 5) - x int hash = 31 + major; @@ -49,6 +50,7 @@ public class VersionNumber implements Comparable { return ((hash << 5) - hash) + sub; } + @Override public final boolean equals(Object o) { return 0 == compareTo(o); } @@ -88,6 +90,7 @@ public class VersionNumber implements Comparable { return sub; } + @Override public String toString() { return major + "." + minor + "." + sub ; } |