From 195f78376b025bbe244e86698cd254887e6aa904 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Sat, 24 Nov 2007 21:50:54 +0000 Subject: [PATCH] Haha, there was already one in StringUtil. I was sure I'd checked... git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4881 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/Util.as | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/as/com/threerings/util/Util.as b/src/as/com/threerings/util/Util.as index 18c06924f..e11cf9f99 100644 --- a/src/as/com/threerings/util/Util.as +++ b/src/as/com/threerings/util/Util.as @@ -83,19 +83,6 @@ public class Util return false; } - /** - * Compute a hash code for a string. This is pretty expensive, so only compute - * it once if that's at all an option. This is the JDK algorithm... - */ - public static function hashCode (str :String) :int - { - var h :int = 0; - for (var i :int = str.length-1; i >= 0; i--) { - h = int(int(31*h) + str.charCodeAt(i)); - } - return h; - } - /** * If you call a varargs method by passing it an array, the array * will end up being arg 1.