Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 62992 invoked from network); 31 Aug 2009 07:11:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 31 Aug 2009 07:11:56 -0000 Received: (qmail 84416 invoked by uid 500); 31 Aug 2009 07:11:55 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 84185 invoked by uid 500); 31 Aug 2009 07:11:55 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 84059 invoked by uid 99); 31 Aug 2009 07:11:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Aug 2009 07:11:54 +0000 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; Mon, 31 Aug 2009 07:11:53 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id DFCD1234C004 for ; Mon, 31 Aug 2009 00:11:32 -0700 (PDT) Message-ID: <1138427066.1251702692909.JavaMail.jira@brutus> Date: Mon, 31 Aug 2009 00:11:32 -0700 (PDT) From: "Boni Gopalan (JIRA)" To: issues@commons.apache.org Subject: [jira] Updated: (BEANUTILS-359) Difference in setProperty() behavior when invoking setter with a String value that has ':' In-Reply-To: <317775661.1251614612770.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/BEANUTILS-359?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boni Gopalan updated BEANUTILS-359: ----------------------------------- Affects Version/s: (was: 1.8.0) 1.8.1 > Difference in setProperty() behavior when invoking setter with a String value that has ':' > ------------------------------------------------------------------------------------------ > > Key: BEANUTILS-359 > URL: https://issues.apache.org/jira/browse/BEANUTILS-359 > Project: Commons BeanUtils > Issue Type: Bug > Affects Versions: 1.8.1 > Environment: JDK6 > Reporter: Boni Gopalan > Fix For: 1.8.1 > > Attachments: beanutils-test.zip > > > The behavior of BeanUtils.setProperty differes from 1.7.0 when invoking setter with a string value that has a : or any other common seperator. > 1.8.0 --> BeanUtils.setProperty(simplePojo, "jcrMixinTypes", "mix:rereferencible"); Splits mix:referensible to new String[]{"mix","referencible"} > 1.7.0 --> BeanUtils.setProperty(simplePojo, "jcrMixinTypes", "mix:rereferencible"); Splits mix:referensible to new String[]{"mix:referencible"} > I have a failing testcase that I am atatching. Please run with > mvn clean test -Dbeanutils.version=1.8.0 ==> for using 1.8.0 version > mvn clean test -Dbeanutils.version=1.7.0 ==> for using 1.7.0 version -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.