Skip to content

Commit

Permalink
Merge pull request #32 from MicroFocus/opopescu_issue_2612043_azure_d…
Browse files Browse the repository at this point in the history
…evops_pipeline_execution_issues

defect #2612043: Azure DevOps pipeline execution issues
  • Loading branch information
Stefan923 authored Oct 11, 2024
2 parents 76e07bf + 8805a17 commit cd980e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.microfocus.adm.almoctane.bdd</groupId>
<artifactId>bdd2octane</artifactId>
<version>1.1.8-SNAPSHOT</version>
<version>1.1.9-SNAPSHOT</version>
<packaging>maven-plugin</packaging>

<name>bdd2octane</name>
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/microfocus/bdd/JunitReportReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ public Element next() {
}

private Element getElement(StartElement startElementEvent) {
if (null == startElementEvent) {
return null;
}

Element element = new Element();
try {
String elementName = getElementName(startElementEvent);
Expand Down

0 comments on commit cd980e4

Please sign in to comment.