From 5e6fa01dba33abf6071e5bfff752800cd581a4bb Mon Sep 17 00:00:00 2001 From: "axel%pike.org" Date: Fri, 4 Apr 2003 15:44:13 +0000 Subject: [PATCH] remove dead code, r=sicking, sr=peterv --- .../transformiix/source/base/TxObject.h | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/extensions/transformiix/source/base/TxObject.h b/extensions/transformiix/source/base/TxObject.h index 3923acfd8b2..fc2839b5842 100644 --- a/extensions/transformiix/source/base/TxObject.h +++ b/extensions/transformiix/source/base/TxObject.h @@ -31,31 +31,11 @@ class TxObject { public: - /** - * Creates a new TxObject - **/ - TxObject() {}; - /** * Deletes this TxObject **/ virtual ~TxObject() {}; - /** - * Returns the Hashcode for this TxObject - **/ - virtual PRUint32 hashCode() { - return NS_PTR_TO_INT32(this); - } //-- hashCode - - /** - * Returns true if the given Object is equal to this object. - * By default the comparison operator == is used, but this may - * be overridden - **/ - virtual MBool equals(TxObject* obj) { - return (MBool)(obj == this); - } //-- equals }; #endif