Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 11245 invoked from network); 25 Jan 2005 14:48:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 25 Jan 2005 14:48:47 -0000 Received: (qmail 54429 invoked by uid 500); 25 Jan 2005 14:48:37 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 54370 invoked by uid 500); 25 Jan 2005 14:48:37 -0000 Mailing-List: contact dev-help@ant.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Ant Developers List" Reply-To: "Ant Developers List" Delivered-To: mailing list dev@ant.apache.org Received: (qmail 54355 invoked by uid 500); 25 Jan 2005 14:48:36 -0000 Received: (qmail 54348 invoked by uid 99); 25 Jan 2005 14:48:36 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 25 Jan 2005 06:48:36 -0800 Received: (qmail 11113 invoked by uid 1539); 25 Jan 2005 14:48:35 -0000 Date: 25 Jan 2005 14:48:35 -0000 Message-ID: <20050125144835.11111.qmail@minotaur.apache.org> From: peterreilly@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant Project.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N peterreilly 2005/01/25 06:48:31 Modified: src/main/org/apache/tools/ant Project.java Log: checkstyle Revision Changes Path 1.184 +4 -3 ant/src/main/org/apache/tools/ant/Project.java Index: Project.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/Project.java,v retrieving revision 1.183 retrieving revision 1.184 diff -u -r1.183 -r1.184 --- Project.java 14 Jan 2005 10:09:23 -0000 1.183 +++ Project.java 25 Jan 2005 14:48:08 -0000 1.184 @@ -1185,6 +1185,7 @@ /** * Executes a Vector of sorted targets. * @param sortedTargets the aforementioned Vector. + * @throws BuildException on error. */ public void executeSortedTargets(Vector sortedTargets) throws BuildException { @@ -1691,7 +1692,7 @@ * @exception BuildException if a non-existent target is specified or if * a circular dependency is detected. */ - private final void tsort(String root, Hashtable targets, + private void tsort(String root, Hashtable targets, Hashtable state, Stack visiting, Vector ret) throws BuildException { @@ -1982,7 +1983,7 @@ } synchronized (this) { if (loggingMessage) { - /* + /* * One of the Listeners has attempted to access * System.err or System.out. * --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org