Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 22340 invoked from network); 13 Jan 2007 22:28:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Jan 2007 22:28:50 -0000 Received: (qmail 71507 invoked by uid 500); 13 Jan 2007 22:28:57 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 71412 invoked by uid 500); 13 Jan 2007 22:28:56 -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 71403 invoked by uid 99); 13 Jan 2007 22:28:56 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Jan 2007 14:28:56 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= 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; Sat, 13 Jan 2007 14:28:49 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9F62D7142F7 for ; Sat, 13 Jan 2007 14:28:29 -0800 (PST) Message-ID: <19681423.1168727309648.JavaMail.jira@brutus> Date: Sat, 13 Jan 2007 14:28:29 -0800 (PST) From: "Mark Hindess (JIRA)" To: commits@harmony.apache.org Subject: [jira] Resolved: (HARMONY-2636) [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't In-Reply-To: <21770880.1165924881121.JavaMail.jira@brutus> 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-2636?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mark Hindess resolved HARMONY-2636. ----------------------------------- Resolution: Fixed Assignee: Mark Hindess Applied patches in r495984. I made the small correction mentioned in the JIRA comment. Next time please test your test! Please confirm they have been applied as expected. > [classlib][swing] javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(JSeparator s) throws NPE while RI doesn't > --------------------------------------------------------------------------------------------------------------------- > > Key: HARMONY-2636 > URL: https://issues.apache.org/jira/browse/HARMONY-2636 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Alexander Simbirtsev > Assigned To: Mark Hindess > Attachments: basicseparatorui-patch.txt, H2636-BasicSeparatorUITest.patch > > > Harmony throws unspecified NPE for javax.swing.plaf.basic.BasicSeparatorUI.uninstallDefaults(null) while RI works silently. > Use the following code to reproduce: > import javax.swing.JSeparator; > import javax.swing.plaf.basic.BasicSeparatorUI; > import junit.framework.TestCase; > class BSPUI extends BasicSeparatorUI > { > public int testt(JSeparator s){ > uninstallDefaults(s); > return 1; > } > } > public class Test extends TestCase { > public void testcase0(){ > BSPUI localBasicSeparatorUI = new BSPUI(); > try { > localBasicSeparatorUI.testt(null); > System.out.println("works silently"); > assertEquals(true, true); > } catch (NullPointerException e) { > e.printStackTrace(); > fail("Unspecified exception thrown:" + e); > } > } > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira