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 4632A171C6 for ; Sun, 10 May 2015 20:20:39 +0000 (UTC) Received: (qmail 22180 invoked by uid 500); 10 May 2015 20:20:39 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 22120 invoked by uid 500); 10 May 2015 20:20:39 -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 22111 invoked by uid 99); 10 May 2015 20:20:39 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 May 2015 20:20:39 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id E73B3AC09F8 for ; Sun, 10 May 2015 20:20:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1678632 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java Date: Sun, 10 May 2015 20:20:38 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150510202038.E73B3AC09F8@hades.apache.org> Author: oheger Date: Sun May 10 20:20:38 2015 New Revision: 1678632 URL: http://svn.apache.org/r1678632 Log: Checkstyle: Placement of { Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java?rev=1678632&r1=1678631&r2=1678632&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java (original) +++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java Sun May 10 20:20:38 2015 @@ -439,7 +439,8 @@ public class PropertyListConfiguration e { StringBuilder buf = new StringBuilder(); - for (DateComponentParser element : DATE_PARSERS) { + for (DateComponentParser element : DATE_PARSERS) + { element.formatComponent(buf, cal); }