Merge remote-tracking branch 'origin/develop' into bug/JAL-2665-2.10.3
[jalview.git] / src / jalview / util / CaseInsensitiveString.java
index b66e80d..a01c035 100644 (file)
@@ -71,7 +71,7 @@ public final class CaseInsensitiveString
   @Override
   public int hashCode()
   {
-    return value == null ? super.hashCode() : value.toUpperCase()
-            .hashCode();
+    return value == null ? super.hashCode()
+            : value.toUpperCase().hashCode();
   }
 }