Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 74789 invoked from network); 1 Feb 2011 12:21:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Feb 2011 12:21:20 -0000 Received: (qmail 16098 invoked by uid 500); 1 Feb 2011 12:21:20 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 15730 invoked by uid 500); 1 Feb 2011 12:21:17 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 15723 invoked by uid 99); 1 Feb 2011 12:21:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Feb 2011 12:21:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Feb 2011 12:21:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E150023889CB; Tue, 1 Feb 2011 12:20:55 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1066025 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java Date: Tue, 01 Feb 2011 12:20:55 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110201122055.E150023889CB@eris.apache.org> Author: simonetripodi Date: Tue Feb 1 12:20:55 2011 New Revision: 1066025 URL: http://svn.apache.org/viewvc?rev=1066025&view=rev Log: fixed error message format on extractingValueFromAttribute() Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java?rev=1066025&r1=1066024&r2=1066025&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java Tue Feb 1 12:20:55 2011 @@ -218,7 +218,7 @@ final class RulesBinderImpl implements R public SetPropertyBuilder extractingValueFromAttribute(String valueAttributeName) { if (attributePropertyName == null || attributePropertyName.length() == 0) { - addError("{forPattern(\"%s\").setProperty(\"%s\")} empty 'valueAttributeName' not allowed", + addError("{forPattern(\"%s\").setProperty(\"%s\").extractingValueFromAttribute(String)} empty 'valueAttributeName' not allowed", keyPattern, attributePropertyName); }