diff dwtx/jface/text/contentassist/ContextInformation.d @ 160:3678e4f1a766

toHash, toString
author Frank Benoit <benoit@tionex.de>
date Wed, 27 Aug 2008 02:07:22 +0200
parents 75302ef3f92f
children 1a5b8f8129df
line wrap: on
line diff
--- a/dwtx/jface/text/contentassist/ContextInformation.d	Wed Aug 27 01:57:58 2008 +0200
+++ b/dwtx/jface/text/contentassist/ContextInformation.d	Wed Aug 27 02:07:22 2008 +0200
@@ -111,9 +111,9 @@
      * @see java.lang.Object#hashCode()
      * @since 3.1
      */
-    public int hashCode() {
-        int low= fContextDisplayString !is null ? fContextDisplayString.hashCode() : 0;
-        return (fInformationDisplayString.hashCode() << 16) | low;
+    public override hash_t toHash() {
+        int low= fContextDisplayString !is null ? fContextDisplayString.toHash() : 0;
+        return (fInformationDisplayString.toHash() << 16) | low;
     }
 
     /*