Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 73381 invoked from network); 16 Apr 2007 06:50:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Apr 2007 06:50:39 -0000 Received: (qmail 63432 invoked by uid 500); 16 Apr 2007 06:50:42 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 63401 invoked by uid 500); 16 Apr 2007 06:50:42 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 63378 invoked by uid 99); 16 Apr 2007 06:50:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Apr 2007 23:50:42 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Apr 2007 23:50:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 92778714071 for ; Sun, 15 Apr 2007 23:50:15 -0700 (PDT) Message-ID: <30578132.1176706215597.JavaMail.jira@brutus> Date: Sun, 15 Apr 2007 23:50:15 -0700 (PDT) From: "Sandy McArthur (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-1336) [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-1336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sandy McArthur updated HARMONY-1336: ------------------------------------ Attachment: harmony-1336-test.patch unit test that should test this issue. (I don't have harmony installed anywhere so I don't really know for sure.) > [classlib][beans] unexpected IllegalArgumentException for PropertyChangeSupport.fireIndexedPropertyChange(...) > -------------------------------------------------------------------------------------------------------------- > > Key: HARMONY-1336 > URL: https://issues.apache.org/jira/browse/HARMONY-1336 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Vladimir Ivanov > Assigned To: Nathan Beyer > Priority: Minor > Attachments: harmony-1336-test.patch, harmony-1336.patch, PropertyChangeSupportTest.patch > > > The method java.beans.PropertyChangeSupport().fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null) throws IllegalArgumentException on Harmony and works silently on RI. > ====================== test.java ========================= > import java.nio.channels.UnresolvedAddressException; > import java.beans.PropertyChangeSupport; > import javax.swing.plaf.metal.MetalIconFactory; > public class test { > public static void main(String args[]) { > new PropertyChangeSupport(new MetalIconFactory.PaletteCloseIcon()).fireIndexedPropertyChange("", 24992, new UnresolvedAddressException(), null); > System.out.println("OK"); > } > } > ====================================================== > Output: > C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test > java version "1.5.0" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) > BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar)) > OK > C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test > java version 1.5 (subset) > (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > Exception in thread "main" java.lang.IllegalArgumentException > at java.util.EventObject.(EventObject.java:46) > at java.beans.PropertyChangeEvent.(PropertyChangeEvent.java:44) > at java.beans.IndexedPropertyChangeEvent.(IndexedPropertyChangeEvent.java:54) > at java.beans.PropertyChangeSupport.fireIndexedPropertyChange(PropertyChangeSupport.java:88) > at test.main(test.java:7) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.