Skip to content

Commit

Permalink
Merge pull request #27 from SmartBear/ZEPHYR-28803
Browse files Browse the repository at this point in the history
ZEPHYR-28803: Changed xmlLink.type to incoming type while attaching link
  • Loading branch information
AbhishekAgarwalSmartbear committed Apr 23, 2020
2 parents 0f755c1 + 9808991 commit 2e58090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/thed/utils/XMLLink.java
Expand Up @@ -73,7 +73,7 @@ public void attachLink(String[] linkArray, Type type) {
xmlLink = new XMLLink(linkArray[1], type);
addChildXMLLink(xmlLink);
xmlLink.setParentXMLLink(this);
xmlLink.attachLink(Arrays.copyOfRange(linkArray, 1, linkArray.length), Type.OBJECT);
xmlLink.attachLink(Arrays.copyOfRange(linkArray, 1, linkArray.length), type);
}
}
}
Expand Down

0 comments on commit 2e58090

Please sign in to comment.