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 25D18B874 for ; Sat, 31 Dec 2011 16:07:10 +0000 (UTC) Received: (qmail 56628 invoked by uid 500); 31 Dec 2011 16:07:09 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 56571 invoked by uid 500); 31 Dec 2011 16:07:09 -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 56563 invoked by uid 99); 31 Dec 2011 16:07:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Dec 2011 16:07:09 +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, 31 Dec 2011 16:07:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 617DD238897D for ; Sat, 31 Dec 2011 16:06:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1226123 - /commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj Date: Sat, 31 Dec 2011 16:06:46 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111231160646.617DD238897D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: oheger Date: Sat Dec 31 16:06:45 2011 New Revision: 1226123 URL: http://svn.apache.org/viewvc?rev=1226123&view=rev Log: Fixed some warnings. Modified: commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj Modified: commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj?rev=1226123&r1=1226122&r2=1226123&view=diff ============================================================================== --- commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj (original) +++ commons/proper/configuration/trunk/src/main/javacc/PropertyListParser.jj Sat Dec 31 16:06:45 2011 @@ -156,7 +156,7 @@ PropertyListConfiguration parse() : PropertyListConfiguration Dictionary() : { PropertyListConfiguration configuration = new PropertyListConfiguration(); - List children = new ArrayList(); + List children = new ArrayList(); Node child = null; } { @@ -182,7 +182,7 @@ PropertyListConfiguration Dictionary() : { for (int i = 0; i < children.size(); i++) { - child = (Node) children.get(i); + child = children.get(i); configuration.getRoot().addChild(child); } @@ -231,7 +231,7 @@ Object Element() : List Array() : { - List list = new ArrayList(); + List list = new ArrayList(); Object element = null; } {