From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6416 invoked by alias); 17 Apr 2005 00:46:00 -0000 Mailing-List: contact java-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-prs-owner@gcc.gnu.org Received: (qmail 6399 invoked by uid 48); 17 Apr 2005 00:46:00 -0000 Date: Sun, 17 Apr 2005 00:46:00 -0000 Message-ID: <20050417004600.6396.qmail@sourceware.org> From: "gruni dot ca at gmail dot com" To: java-prs@gcc.gnu.org In-Reply-To: <20050417001142.21065.gruni.ca@gmail.com> References: <20050417001142.21065.gruni.ca@gmail.com> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug java/21065] javax.swing.event.EventListenerList.getListenerList() implemented wrong X-Bugzilla-Reason: CC X-SW-Source: 2005-q2/txt/msg00157.txt.bz2 List-Id: ------- Additional Comments From gruni dot ca at gmail dot com 2005-04-17 00:45 ------- Created an attachment (id=8663) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8663&action=view) Simple Testcase showing that addind a EventListener increments the list by one This is a testcase I wrote, I compiled it with gcj --main=GcjEventListenerListTest -o EventTest.exe GcjEventListenerListTest.java the output should be similar to JDK if implemented correctly JDK output: should be=2 is=2 should be=4 is=4 GCJ output: should be=2 is=1 should be=4 is=2 That's all I have -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21065