Return-Path: Delivered-To: apmail-ant-dev-archive@www.apache.org Received: (qmail 72872 invoked from network); 30 Mar 2005 17:06:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 30 Mar 2005 17:06:46 -0000 Received: (qmail 45229 invoked by uid 500); 30 Mar 2005 17:06:43 -0000 Delivered-To: apmail-ant-dev-archive@ant.apache.org Received: (qmail 45151 invoked by uid 500); 30 Mar 2005 17:06:42 -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 45092 invoked by uid 500); 30 Mar 2005 17:06:42 -0000 Received: (qmail 45067 invoked by uid 99); 30 Mar 2005 17:06:42 -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; Wed, 30 Mar 2005 09:06:41 -0800 Received: (qmail 72756 invoked by uid 1939); 30 Mar 2005 17:06:40 -0000 Date: 30 Mar 2005 17:06:40 -0000 Message-ID: <20050330170640.72755.qmail@minotaur.apache.org> From: jglick@apache.org To: ant-cvs@apache.org Subject: cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/junit JUnitTask.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N jglick 2005/03/30 09:06:40 Modified: src/main/org/apache/tools/ant/taskdefs/optional/junit JUnitTask.java Log: Fixed missing braces. Revision Changes Path 1.117 +5 -4 ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java Index: JUnitTask.java =================================================================== RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/junit/JUnitTask.java,v retrieving revision 1.116 retrieving revision 1.117 diff -u -r1.116 -r1.117 --- JUnitTask.java 29 Mar 2005 19:19:04 -0000 1.116 +++ JUnitTask.java 30 Mar 2005 17:06:39 -0000 1.117 @@ -1505,7 +1505,7 @@ /** * Logs information about failed tests, potentially stops * processing (by throwing a BuildException) if a failure/error - * occured or sets a property. + * occurred or sets a property. * * @since Ant 1.6.2 */ @@ -1520,7 +1520,7 @@ /** * Logs information about failed tests, potentially stops * processing (by throwing a BuildException) if a failure/error - * occured or sets a property. + * occurred or sets a property. * * @since Ant 1.7 */ @@ -1571,10 +1571,11 @@ } protected void processLine(String line, int level) { - if (line.startsWith(TESTLISTENER_PREFIX)) + if (line.startsWith(TESTLISTENER_PREFIX)) { task.log(line, Project.MSG_VERBOSE); - else + } else { super.processLine(line, level); + } } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org For additional commands, e-mail: dev-help@ant.apache.org