You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ja...@apache.org on 2019/10/17 07:00:04 UTC

[ant] branch master updated: remove typo and duplicate code

This is an automated email from the ASF dual-hosted git repository.

jaikiran pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a231f6  remove typo and duplicate code
8a231f6 is described below

commit 8a231f66471e8894907b57845d4ee5f4273a72f3
Author: Michael Seele <ms...@gmail.com>
AuthorDate: Thu Oct 17 08:10:06 2019 +0200

    remove typo and duplicate code
    
    This closes #102 pull request at github/apache/ant
---
 .../ant/taskdefs/optional/junitlauncher/StandaloneLauncher.java  | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/StandaloneLauncher.java b/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/StandaloneLauncher.java
index d6b61ae..3f9d99f 100644
--- a/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/StandaloneLauncher.java
+++ b/src/main/org/apache/tools/ant/taskdefs/optional/junitlauncher/StandaloneLauncher.java
@@ -140,9 +140,9 @@ public class StandaloneLauncher {
             reader.require(START_DOCUMENT, null, null);
             reader.nextTag();
             reader.require(START_ELEMENT, null, LD_XML_ELM_LAUNCH_DEF);
-            final String haltOnfFailure = reader.getAttributeValue(null, LD_XML_ATTR_HALT_ON_FAILURE);
-            if (haltOnfFailure != null) {
-                forkedLaunch.setHaltOnFailure(Boolean.parseBoolean(haltOnfFailure));
+            final String haltOnFailure = reader.getAttributeValue(null, LD_XML_ATTR_HALT_ON_FAILURE);
+            if (haltOnFailure != null) {
+                forkedLaunch.setHaltOnFailure(Boolean.parseBoolean(haltOnFailure));
             }
             final String includeTags = reader.getAttributeValue(null, LD_XML_ATTR_INCLUDE_TAGS);
             if (includeTags != null) {
@@ -156,9 +156,6 @@ public class StandaloneLauncher {
             if (printSummary != null) {
                 forkedLaunch.setPrintSummary(Boolean.parseBoolean(printSummary));
             }
-            if (haltOnfFailure != null) {
-                forkedLaunch.setHaltOnFailure(Boolean.parseBoolean(haltOnfFailure));
-            }
             reader.nextTag();
             reader.require(START_ELEMENT, null, null);
             final String elementName = reader.getLocalName();