Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4882D68B3 for ; Sat, 28 May 2011 15:12:42 +0000 (UTC) Received: (qmail 57858 invoked by uid 500); 28 May 2011 15:12:42 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 57716 invoked by uid 500); 28 May 2011 15:12:42 -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 57709 invoked by uid 99); 28 May 2011 15:12:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 28 May 2011 15:12:41 +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; Sat, 28 May 2011 15:12:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 167C023889E2; Sat, 28 May 2011 15:12:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128662 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Date: Sat, 28 May 2011 15:12:21 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110528151221.167C023889E2@eris.apache.org> Author: simonetripodi Date: Sat May 28 15:12:20 2011 New Revision: 1128662 URL: http://svn.apache.org/viewvc?rev=1128662&view=rev Log: fixed checkstyle violation: Line is longer than 120 characters. Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java?rev=1128662&r1=1128661&r2=1128662&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/NodeCreateRule.java Sat May 28 15:12:20 2011 @@ -400,7 +400,8 @@ public class NodeCreateRule element = doc.createElementNS( namespaceURI, name ); for ( int i = 0; i < attributes.getLength(); i++ ) { - element.setAttributeNS( attributes.getURI( i ), attributes.getQName( i ), attributes.getValue( i ) ); + element.setAttributeNS( attributes.getURI( i ), attributes.getQName( i ), + attributes.getValue( i ) ); } } else