From e53070ba355cc302a57938cf1658667ef098970b Mon Sep 17 00:00:00 2001 From: Peter Reilly Date: Tue, 25 Jan 2005 14:48:08 +0000 Subject: [PATCH] checkstyle git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277454 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/Project.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/Project.java b/src/main/org/apache/tools/ant/Project.java index 49794ed3e..a00f28e4b 100644 --- a/src/main/org/apache/tools/ant/Project.java +++ b/src/main/org/apache/tools/ant/Project.java @@ -1185,6 +1185,7 @@ public class Project { /** * 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 @@ public class Project { * @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 @@ public class Project { } synchronized (this) { if (loggingMessage) { - /* + /* * One of the Listeners has attempted to access * System.err or System.out. *