Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 86603 invoked from network); 4 Feb 2011 08:31:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Feb 2011 08:31:51 -0000 Received: (qmail 8688 invoked by uid 500); 4 Feb 2011 08:31:50 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 8342 invoked by uid 500); 4 Feb 2011 08:31:47 -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 8328 invoked by uid 99); 4 Feb 2011 08:31:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Feb 2011 08:31:47 +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; Fri, 04 Feb 2011 08:31:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 989E323889E5; Fri, 4 Feb 2011 08:31:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1067112 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/RulesBinderImpl.java Date: Fri, 04 Feb 2011 08:31:26 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110204083126.989E323889E5@eris.apache.org> Author: simonetripodi Date: Fri Feb 4 08:31:26 2011 New Revision: 1067112 URL: http://svn.apache.org/viewvc?rev=1067112&view=rev Log: fixed NPE when calling callParam().withParamCount() 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=1067112&r1=1067111&r2=1067112&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 Fri Feb 4 08:31:26 2011 @@ -624,7 +624,7 @@ final class RulesBinderImpl implements R } this.paramCount = paramCount; - return null; + return this; } public CallMethodBuilder withParamTypes(/* @Nullable */Class... paramTypes) {