Return-Path: Delivered-To: apmail-felix-dev-archive@www.apache.org Received: (qmail 5354 invoked from network); 27 Aug 2007 23:35:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Aug 2007 23:35:54 -0000 Received: (qmail 33589 invoked by uid 500); 27 Aug 2007 23:35:49 -0000 Delivered-To: apmail-felix-dev-archive@felix.apache.org Received: (qmail 33549 invoked by uid 500); 27 Aug 2007 23:35:49 -0000 Mailing-List: contact dev-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list dev@felix.apache.org Received: (qmail 33540 invoked by uid 99); 27 Aug 2007 23:35:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Aug 2007 16:35:49 -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; Mon, 27 Aug 2007 23:36:44 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B33A971418F for ; Mon, 27 Aug 2007 16:35:30 -0700 (PDT) Message-ID: <19874749.1188257730713.JavaMail.jira@brutus> Date: Mon, 27 Aug 2007 16:35:30 -0700 (PDT) From: "Stefano Lenzi (JIRA)" To: dev@felix.apache.org Subject: [jira] Commented: (FELIX-108) OBR should handle R3 bundles without symbolic name better 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/FELIX-108?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12523133 ] Stefano Lenzi commented on FELIX-108: ------------------------------------- Do you think that using the following code: if(getSymbolicName() == null) return getVersion().hashCode(); return getSymbolicName().hashCode() ^ getVersion().hashCode(); instead of return getSymbolicName().hashCode() ^ getVersion().hashCode(); is not enough? > OBR should handle R3 bundles without symbolic name better > --------------------------------------------------------- > > Key: FELIX-108 > URL: https://issues.apache.org/jira/browse/FELIX-108 > Project: Felix > Issue Type: Bug > Components: Bundle Repository (OBR) > Reporter: Richard S. Hall > Priority: Minor > > Currently, OBR assumes that all bundles have symbolic names, but R3 bundles do not, which can lead to null pointer exceptions. Modify OBR so that it handles bundles without symbolic names more cleanly. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.