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 623466837 for ; Sat, 28 May 2011 13:06:00 +0000 (UTC) Received: (qmail 81000 invoked by uid 500); 28 May 2011 13:06:00 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 80950 invoked by uid 500); 28 May 2011 13:06:00 -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 80943 invoked by uid 99); 28 May 2011 13:06:00 -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 13:06:00 +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 13:05:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F0FDB238897F; Sat, 28 May 2011 13:05:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1128632 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Date: Sat, 28 May 2011 13:05:38 -0000 To: commits@commons.apache.org From: simonetripodi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110528130538.F0FDB238897F@eris.apache.org> Author: simonetripodi Date: Sat May 28 13:05:38 2011 New Revision: 1128632 URL: http://svn.apache.org/viewvc?rev=1128632&view=rev Log: fixed checkstyle location: 'if' construct must use '{}'s. Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java?rev=1128632&r1=1128631&r2=1128632&view=diff ============================================================================== --- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java (original) +++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/Digester.java Sat May 28 13:05:38 2011 @@ -1128,7 +1128,9 @@ public class Digester { stack.pop(); if ( stack.empty() ) + { namespaces.remove( prefix ); + } } catch ( EmptyStackException e ) { @@ -1406,7 +1408,9 @@ public class Digester } if ( publicId != null ) + { this.publicId = publicId; + } // Has this system identifier been registered? URL entityURL = null;