Return-Path: Delivered-To: apmail-ant-notifications-archive@locus.apache.org Received: (qmail 42546 invoked from network); 4 Dec 2008 19:23:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Dec 2008 19:23:34 -0000 Received: (qmail 95327 invoked by uid 500); 4 Dec 2008 19:23:46 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 95305 invoked by uid 500); 4 Dec 2008 19:23:46 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 95296 invoked by uid 99); 4 Dec 2008 19:23:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Dec 2008 11:23:46 -0800 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; Thu, 04 Dec 2008 19:22:26 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 31227234C2EA for ; Thu, 4 Dec 2008 11:22:44 -0800 (PST) Message-ID: <694616736.1228418564186.JavaMail.jira@brutus> Date: Thu, 4 Dec 2008 11:22:44 -0800 (PST) From: "Daniel Becheanu (JIRA)" To: notifications@ant.apache.org Subject: [jira] Updated: (IVYDE-136) When migrating from ivyde alpha to ivyde beta eclipse is throwing NPE at startup In-Reply-To: <1509505700.1228239644215.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/IVYDE-136?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Daniel Becheanu updated IVYDE-136: ---------------------------------- Attachment: Patch_IvyDEPreferenceStoreHelper.txt > When migrating from ivyde alpha to ivyde beta eclipse is throwing NPE at startup > -------------------------------------------------------------------------------- > > Key: IVYDE-136 > URL: https://issues.apache.org/jira/browse/IVYDE-136 > Project: IvyDE > Issue Type: Bug > Environment: Windows > Reporter: Daniel Becheanu > Attachments: Patch_IvyDEPreferenceStoreHelper.txt, rad_stack_trace.txt > > > When migrating from ivyde alpha to ivyde beta eclipse is throwing NPE at startup. > The problem seems to be in IvyDEPreferenceStoreHelper. This class tries to invoke IPreferenceStore.putValue with null newValue but the implementation from > org.eclipse.core.internal.preferences.EclipsePreferences does not accept nulls. > public void put(String key, String newValue) > { > if(key == null || newValue == null) > throw new NullPointerException(); > String oldValue = internalPut(key, newValue); > if(!newValue.equals(oldValue)) > { > makeDirty(); > firePreferenceEvent(key, oldValue, newValue); > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.