Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 85502 invoked from network); 13 Mar 2010 20:11:30 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 13 Mar 2010 20:11:30 -0000 Received: (qmail 59365 invoked by uid 500); 13 Mar 2010 20:10:49 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 59250 invoked by uid 500); 13 Mar 2010 20:10:48 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 59242 invoked by uid 99); 13 Mar 2010 20:10:48 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Mar 2010 20:10:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Mar 2010 20:10:47 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4EECB234C1F0 for ; Sat, 13 Mar 2010 20:10:27 +0000 (UTC) Message-ID: <1753338628.247901268511027322.JavaMail.jira@brutus.apache.org> Date: Sat, 13 Mar 2010 20:10:27 +0000 (UTC) From: "Oliver Sauder (JIRA)" To: issues@commons.apache.org Subject: [jira] Created: (LANG-606) EqualsBuilder causes StackOverflowException MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 EqualsBuilder causes StackOverflowException ------------------------------------------- Key: LANG-606 URL: https://issues.apache.org/jira/browse/LANG-606 Project: Commons Lang Issue Type: Bug Components: lang.builder.* Affects Versions: 2.5 Reporter: Oliver Sauder Priority: Minor EqualsBuilder causes StackOverflowException when comparing objects with cyclical object references. e,g. static class TestObjectReference { @SuppressWarnings("unused") private TestObjectReference reference; @SuppressWarnings("unused") private TestObject one; public TestObjectReference(int one) { this.one = new TestObject(one); } public void setObjectReference( TestObjectReference reference) { this.reference = reference; } @Override public boolean equals(Object obj) { return EqualsBuilder.reflectionEquals(this, obj); } } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.