From 51d6e190ca60b3290476a86a21aa74c065ba22aa Mon Sep 17 00:00:00 2001 From: jochen Date: Thu, 29 Apr 1999 11:22:23 +0000 Subject: [PATCH] removed equals method, since no longer necessary git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@720 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/Reference.java | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/jode/jode/bytecode/Reference.java b/jode/jode/bytecode/Reference.java index e1f702e..697cd16 100644 --- a/jode/jode/bytecode/Reference.java +++ b/jode/jode/bytecode/Reference.java @@ -99,17 +99,6 @@ public class Reference { return className + " " + memberName + " " + memberType; } - public boolean equals(Object o) { - if (o instanceof Reference) { - Reference other = (Reference) o; - return other.cachedHashCode == cachedHashCode - && other.className.equals(className) - && other.memberName.equals(memberName) - && other.memberType.equals(memberType); - } - return false; - } - public int hashCode() { return cachedHashCode; }